testproject
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.spotify.docgenerator</groupId>
<artifactId>testproject</artifactId>
<version>0.0.1</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.spotify.docgenerator</groupId>
<artifactId>parent</artifactId>
<version>0.0.1</version>
</parent>
<name>Spotify Docgenerator Test Project</name>
<artifactId>testproject</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--compile deps-->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.spotify.docgenerator</groupId>
<artifactId>scanner</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>17.0</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>com.spotify.docgenerator</groupId>
<artifactId>docgenerator-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<jsonClassesFiles>
<jsonClassesFile>${project.build.directory}/classes/JSONClasses</jsonClassesFile>
</jsonClassesFiles>
<restEndpointsFiles>
<restEndpointsFile>${project.build.directory}/classes/RESTEndpoints</restEndpointsFile>
</restEndpointsFiles>
<jarFiles>
<jarFile>${project.build.directory}/testproject-${project.version}.jar</jarFile>
</jarFiles>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>