diff options
author | Olivier Lamy <olamy@apache.org> | 2012-09-10 19:13:33 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-09-10 19:13:33 +0000 |
commit | fb43b1972ebf400f4e555e9bbcf69d27bf5c2724 (patch) | |
tree | 46b96d4b0a0e740232af16374dd16a47cc67b996 /archiva-docs/pom.xml | |
parent | 5200e02b0fdf4db16e5bb04396ed604d0ca27d82 (diff) | |
download | archiva-fb43b1972ebf400f4e555e9bbcf69d27bf5c2724.tar.gz archiva-fb43b1972ebf400f4e555e9bbcf69d27bf5c2724.zip |
ability to work offline when writing documentation
see DOXIA-478
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1383059 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-docs/pom.xml')
-rw-r--r-- | archiva-docs/pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/archiva-docs/pom.xml b/archiva-docs/pom.xml index 3cff952fe..692e046a8 100644 --- a/archiva-docs/pom.xml +++ b/archiva-docs/pom.xml @@ -146,5 +146,31 @@ </plugins> </build> </profile> + <profile> + <id>offline</id> + <activation> + <property> + <name>offline</name> + <value>true</value> + </property> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <dependencies> + <dependency> + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-core</artifactId> + <version>1.4-SNAPSHOT</version> + </dependency> + </dependencies> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> </profiles> </project> |