wildfly-server-provisioning-standalone
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.build</groupId> <artifactId>wildfly-server-provisioning-standalone</artifactId> <version>1.2.13.Final</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-build-tools-parent</artifactId> <groupId>org.wildfly.build</groupId> <version>1.2.13.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>wildfly-server-provisioning-standalone</artifactId> <name>WildFly Build Tools: Server Provisioning Standalone</name> <build> <finalName>wildfly</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${version.shade.plugin}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>org.wildfly.build.provisioning.StandaloneServerProvisioning</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>2.2.0.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.wildfly.checkstyle</groupId> <artifactId>wildfly-checkstyle-config</artifactId> <version>1.0.5.Final</version> <scope>provided</scope> </dependency> </dependencies> </project>