wildfly-core-manifest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-core-manifest</artifactId> <version>29.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.core</groupId> <artifactId>wildfly-core-feature-pack-parent</artifactId> <version>29.0.0.Final</version> </parent> <artifactId>wildfly-core-manifest</artifactId> <name>WildFly: Core Manifest</name> <packaging>pom</packaging> <dependencies> <!-- We need the feature pack built first as that generates the manifest --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>wildfly-core-galleon-pack</artifactId> <type>zip</type> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <!-- This module's artifact is currently not deployed --> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>assemble</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> <finalName>assembly</finalName> <workDirectory>${project.build.directory}/assembly-src/work</workDirectory> <attach>false</attach> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.build.directory}/assembly-manifest-rename/assembly/wildly-core-manifest-${project.version}-manifest.yaml</file> <type>yaml</type> <classifier>manifest</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>