wildfly-swarm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>wildfly-swarm</artifactId> <version>2018.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>22</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.forge.addon</groupId> <artifactId>wildfly-swarm</artifactId> <version>2018.5.0</version> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.forge>3.8.1.Final</version.forge> <version.wildlfy.swarm>2018.5.0</version.wildlfy.swarm> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.forge</groupId> <artifactId>forge-bom</artifactId> <version>${version.forge}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>fraction-metadata</artifactId> <version>${version.wildlfy.swarm}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>fraction-metadata</artifactId> </dependency> <dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple</artifactId> <classifier>forge-addon</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.forge.furnace.test</groupId> <artifactId>furnace-test-harness</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.forge.furnace.test</groupId> <artifactId>arquillian-furnace-classpath</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>ui</artifactId> <classifier>forge-addon</classifier> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>projects</artifactId> <classifier>forge-addon</classifier> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>maven</artifactId> <classifier>forge-addon</classifier> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>javaee</artifactId> <classifier>forge-addon</classifier> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>ui-test-harness</artifactId> <classifier>forge-addon</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>shell-test-harness</artifactId> <classifier>forge-addon</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.4.1</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>wildfly-swarm-addon</finalName> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-forge-addon</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>forge-addon</classifier> </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.8</version> <extensions>true</extensions> <configuration> <autoReleaseAfterClose>true</autoReleaseAfterClose> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <serverId>ossrh</serverId> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:git:git://github.com/forge/wildfly-swarm-addon.git</connection> <developerConnection>scm:git:git@github.com:forge/wildfly-swarm-addon.git</developerConnection> <url>http://github.com/forge/wildfly-swarm-addon</url> <tag>2018.5.0</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>