wildfly-test-feature-pack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-test-feature-pack</artifactId> <version>37.0.0.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright The WildFly Authors ~ SPDX-License-Identifier: Apache-2.0 --> <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.wildfly</groupId> <artifactId>wildfly-parent</artifactId> <!-- Maintain separation between the artifact id and the version to help prevent merge conflicts between commits changing the GA and those changing the V. --> <version>37.0.0.Final</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>wildfly-test-feature-pack</artifactId> <name>WildFly: Test Feature Pack</name> <packaging>pom</packaging> <description> Provides a Galleon feature pack for use in provisioning installations for testsuite use. </description> <properties> <!-- Don't deploy the testsuite modules --> <maven.deploy.skip>true</maven.deploy.skip> </properties> <dependencies> <!-- feature pack dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wildfly-ee-galleon-pack</artifactId> <type>pom</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <!-- module and copy artifact dependencies --> </dependencies> <build> <finalName>${server.output.dir.prefix}-test-feature-pack-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/resources</outputDirectory> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.wildfly.galleon-plugins</groupId> <artifactId>wildfly-galleon-maven-plugin</artifactId> <executions> <execution> <id>feature-pack-build</id> <goals> <goal>build-feature-pack</goal> </goals> <phase>compile</phase> <configuration> <release-name>Test</release-name> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>enforce</id> <activation> <property> <name>!skip-enforce</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>ban-transitive-deps</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <banTransitiveDependencies> <excludes/> </banTransitiveDependencies> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>