simple-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple-parent</artifactId> <version>2.29.1.Final</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> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>39</version> </parent> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple-parent</artifactId> <version>2.29.1.Final</version> <packaging>pom</packaging> <name>Furnace - Simple Container Parent</name> <licenses> <license> <name>Eclipse Public License version 1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <developers> <developer> <id>lincoln</id> <name>Lincoln Baxter, III</name> <email>lincolnbaxter@gmail.com</email> </developer> </developers> <modules> <module>api</module> <module>impl</module> <module>addon</module> <module>tests</module> </modules> <properties> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <forge.scm.connection>scm:git:git://github.com/forge/furnace-simple.git</forge.scm.connection> <forge.developer.connection>scm:git:git@github.com:forge/furnace-simple.git</forge.developer.connection> <forge.scm.url>http://github.com/forge/furnace-simple</forge.scm.url> <version.furnace>${project.version}</version.furnace> <version.junit>4.11</version.junit> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple</artifactId> <classifier>forge-addon</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.forge.furnace</groupId> <artifactId>furnace-bom</artifactId> <version>${version.furnace}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- Default configuration for all reports --> <outputDirectory>${project.build.directory}/javadoc/${project.version}</outputDirectory> <reportOutputDirectory>${project.build.directory}/javadoc/${project.version}</reportOutputDirectory> <destDir>${project.build.directory}/javadoc/${project.version}</destDir> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> <!-- Specific configuration for the aggregate report --> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <inherited>true</inherited> <configuration> <preparationGoals>clean install</preparationGoals> <releaseProfiles>gpg-sign,jboss-release</releaseProfiles> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <autoReleaseAfterClose>true</autoReleaseAfterClose> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.jboss.forge.furnace</groupId> <artifactId>furnace-maven-plugin</artifactId> <version>${version.furnace}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${version.jar.plugin}</version> </plugin> <plugin> <!--TODO TEXT. This plugin's configuration is used in m2e only. --> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-dependency-plugin </artifactId> <versionRange>[2.1,)</versionRange> <goals> <goal>copy</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-checkstyle-plugin </artifactId> <versionRange>[2.5,)</versionRange> <goals> <goal>checkstyle</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-clean-plugin </artifactId> <versionRange>[2.4.1,)</versionRange> <goals> <goal>clean</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-antrun-plugin </artifactId> <versionRange> [1.4,) </versionRange> <goals> <goal>run</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <scm> <connection>${forge.scm.connection}</connection> <developerConnection>${forge.developer.connection}</developerConnection> <url>${forge.scm.url}</url> <tag>2.29.1.Final</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>