generate rest documentation for redback rest services
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1394785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3ba2af56dc
commit
15bc571a9f
2
pom.xml
2
pom.xml
|
@ -23,7 +23,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.archiva</groupId>
|
<groupId>org.apache.archiva</groupId>
|
||||||
<artifactId>archiva-parent</artifactId>
|
<artifactId>archiva-parent</artifactId>
|
||||||
<version>9</version>
|
<version>10-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.apache.archiva.redback</groupId>
|
<groupId>org.apache.archiva.redback</groupId>
|
||||||
|
|
|
@ -28,9 +28,14 @@
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>redback-rest-api</artifactId>
|
<artifactId>redback-rest-api</artifactId>
|
||||||
<packaging>bundle</packaging>
|
<!-- DO NOT USE bundle packaging generated documentation is not included in the jar !!! -->
|
||||||
|
<packaging>jar</packaging>
|
||||||
<name>Redback :: Integration :: REST :: Api</name>
|
<name>Redback :: Integration :: REST :: Api</name>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<enunciate.docsDir>${project.build.outputDirectory}/rest-docs-redback-rest-api</enunciate.docsDir>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.archiva.redback</groupId>
|
<groupId>org.apache.archiva.redback</groupId>
|
||||||
|
@ -82,6 +87,15 @@
|
||||||
</Import-Package>
|
</Import-Package>
|
||||||
</instructions>
|
</instructions>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>create-manifest</id>
|
||||||
|
<phase>process-test-classes</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>manifest</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
@ -95,6 +109,15 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue