restexpress-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.strategicgains</groupId> <artifactId>restexpress-parent</artifactId> <version>0.11.3</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>RestExpress-Parent</name> <description>Master, Parent pom for RestExpress (core) and RestExpress-Common</description> <url>https://github.com/RestExpress/RestExpress</url> <groupId>com.strategicgains</groupId> <artifactId>restexpress-parent</artifactId> <version>0.11.3</version> <packaging>pom</packaging> <modules> <module>common</module> <module>core</module> </modules> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <type>jar</type> <scope>test</scope> <optional>true</optional> </dependency> </dependencies> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</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</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <issueManagement> <system>GitHub.com</system> <url>https://github.com/RestExpress/RestExpress/issues</url> </issueManagement> <scm> <url>git@github.com:RestExpress/RestExpress.git</url> <connection>scm:git:git@github.com:RestExpress/RestExpress.git</connection> <developerConnection>scm:git:git@github.com:RestExpress/RestExpress.git</developerConnection> <tag>restexpress-parent-0.11.3</tag> </scm> <developers> <developer> <id>tfredrich</id> <name>Todd Fredrich</name> <email>tfredrich@gmail.com</email> </developer> </developers> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.0</version> <reportSets> <reportSet> <reports> <report>dependency-updates-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.3</version> </plugin> </plugins> </reporting> </project>