Browse Source

bundle documentation


git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@597028 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-1.0
Brett Porter 16 years ago
parent
commit
3326da3972

+ 12
- 1
archiva-docs/pom.xml View File

@@ -31,6 +31,17 @@

<build>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
@@ -41,7 +52,7 @@
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
<goal>single</goal>
</goals>
</execution>
</executions>

+ 6
- 0
archiva-web/archiva-standalone/archiva-plexus-runtime/pom.xml View File

@@ -56,6 +56,12 @@
<artifactId>archiva-plexus-application</artifactId>
<type>plexus-application</type>
</dependency>
<dependency>
<groupId>org.apache.maven.archiva</groupId>
<artifactId>archiva-docs</artifactId>
<type>zip</type>
<classifier>docs</classifier>
</dependency>

<!-- Additional Core Artifacts -->
<dependency>

+ 8
- 1
archiva-web/archiva-standalone/archiva-plexus-runtime/src/main/assembly/bin.xml View File

@@ -21,7 +21,6 @@
<id>bin</id>
<formats>
<format>tar.gz</format>
<format>tar.bz2</format>
<format>zip</format>
</formats>
<fileSets>
@@ -96,5 +95,13 @@
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<unpack>true</unpack>
<includes>
<include>org.apache.maven.archiva:archiva-docs:zip:docs</include>
</includes>
</dependencySet>
</dependencySets>
</assembly>


+ 7
- 0
pom.xml View File

@@ -317,6 +317,13 @@
<artifactId>archiva-transaction</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.archiva</groupId>
<artifactId>archiva-docs</artifactId>
<version>${pom.version}</version>
<type>zip</type>
<classifier>docs</classifier>
</dependency>
<dependency>
<groupId>org.apache.maven.archiva</groupId>
<artifactId>archiva-webapp</artifactId>

Loading…
Cancel
Save