wildfly-swarm-bootstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>wildfly-swarm-bootstrap</artifactId> <version>1.0.0.Alpha5</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/maven-v4_0_0.xsd"> <parent> <artifactId>wildfly-swarm-parent</artifactId> <groupId>org.wildfly.swarm</groupId> <version>1.0.0.Alpha5</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.wildfly.swarm</groupId> <artifactId>wildfly-swarm-bootstrap</artifactId> <name>WildFly Swarm: Bootstrap</name> <description>WildFly Swarm: Bootstrap</description> <build> <resources> <resource> <filtering>true</filtering> <directory>${project.basedir}/src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.wildfly.swarm.bootstrap.Main</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.jboss.modules:jboss-modules:*:*</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.spec.javax.sql</groupId> <artifactId>jboss-javax-sql-api_7.0_spec</artifactId> <version>2.0.0.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>