hibernate-jpa-api-2.2-wildflymodules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-api-2.2-wildflymodules</artifactId>
<version>1.0.0.Beta2</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.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-api-2.2-parent</artifactId>
<version>1.0.0.Beta2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>hibernate-jpa-api-2.2-wildflymodules</artifactId>
<packaging>pom</packaging>
<name>Hibernate JPA 2.2 API WildFly Modules</name>
<description>Patch file for WildFly to upgrade its JPA API version to 2.2</description>
<properties>
<wildfly.original.parent-dir>${project.build.directory}/wildfly-original</wildfly.original.parent-dir>
<wildfly.patched.parent-dir>${project.build.directory}/wildfly-patched</wildfly.patched.parent-dir>
<!-- WildFly current -->
<patchdef.xml>src/main/patchdef/wildfly-current-patch.xml</patchdef.xml>
<wildfly.original.target-dir>${wildfly.original.parent-dir}/wildfly-${wildfly.version}</wildfly.original.target-dir>
<wildfly.patched.target-dir>${wildfly.patched.parent-dir}/wildfly-${wildfly.version}</wildfly.patched.target-dir>
<wildfly.patch-file>${project.build.directory}/wildfly-${wildfly.version}-jpa-2.2-patch.zip</wildfly.patch-file>
<!-- WildFly next -->
<patchdef-next.xml>src/main/patchdef/wildfly-current-patch.xml</patchdef-next.xml>
<wildfly-next.original.target-dir>${project.build.directory}/wildfly-original/wildfly-${wildfly-next.version}</wildfly-next.original.target-dir>
<wildfly-next.patched.target-dir>${project.build.directory}/wildfly-patched/wildfly-${wildfly-next.version}</wildfly-next.patched.target-dir>
<wildfly-next.patch-file>${project.build.directory}/wildfly-${wildfly-next.version}-jpa-2.2-patch.zip</wildfly-next.patch-file>
</properties>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- Extract WildFly -->
<execution>
<id>unpack-wildfly-current</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-dist</artifactId>
<version>${wildfly.version}</version>
<type>tar.gz</type>
<overWrite>false</overWrite>
<outputDirectory>${wildfly.original.parent-dir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>unpack-wildfly-next</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-dist</artifactId>
<version>${wildfly-next.version}</version>
<type>tar.gz</type>
<overWrite>false</overWrite>
<outputDirectory>${wildfly.original.parent-dir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<!-- Update the API JARs in the second WildFly copy N.B. the second
WildFly copy will be created later below, at this point we're only copying
the new jar into the right structure -->
<execution>
<id>prepare-wildfly-current-patch-jars</id>
<phase>prepare-package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>${jpa-api.version}</version>
<overWrite>false</overWrite>
<outputDirectory>${wildfly.patched.target-dir}/modules/system/layers/base/javax/persistence/api/main</outputDirectory>
<!-- Specifying name to avoid breaking the module if the pattern changes -->
<destFileName>javax.persistence-api-${jpa-api.version}.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>prepare-wildfly-next-patch-jars</id>
<phase>prepare-package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>${jpa-api.version}</version>
<overWrite>false</overWrite>
<outputDirectory>${wildfly-next.patched.target-dir}/modules/system/layers/base/javax/persistence/api/main</outputDirectory>
<!-- Specifying name to avoid breaking the module if the pattern changes -->
<destFileName>javax.persistence-api-${jpa-api.version}.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>create-patched-wildfly-current-dist</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${wildfly.original.target-dir}</directory>
<excludes>
<exclude>**/modules/system/layers/base/javax/persistence/api/main/*</exclude>
</excludes>
</resource>
</resources>
<outputDirectory>${wildfly.patched.target-dir}</outputDirectory>
</configuration>
</execution>
<execution>
<id>create-patched-wildfly-next-dist</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${wildfly-next.original.target-dir}</directory>
<excludes>
<exclude>**/modules/system/layers/base/javax/persistence/api/main/*</exclude>
</excludes>
</resource>
</resources>
<outputDirectory>${wildfly-next.patched.target-dir}</outputDirectory>
</configuration>
</execution>
<execution>
<id>add-overridden-modules-to-patched-wildfly-current-dist</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/module</directory>
<filtering>true</filtering>
</resource>
</resources>
<outputDirectory>${wildfly.patched.target-dir}/modules/system/layers/base/javax/persistence/api/main</outputDirectory>
</configuration>
</execution>
<execution>
<id>add-overridden-modules-to-patched-wildfly-next-dist</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/module</directory>
<filtering>true</filtering>
</resource>
</resources>
<outputDirectory>${wildfly-next.patched.target-dir}/modules/system/layers/base/javax/persistence/api/main</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<!-- Create the patch file, based on the diff of the original WF and the updated one -->
<plugin>
<groupId>org.jboss.as</groupId>
<artifactId>patch-gen-maven-plugin</artifactId>
<executions>
<execution>
<id>create-wildfly-current-patch-file</id>
<phase>prepare-package</phase>
<goals>
<goal>generate-patch</goal>
</goals>
<configuration>
<appliesToDist>${wildfly.original.target-dir}</appliesToDist>
<patchConfig>${patchdef.xml}</patchConfig>
<updatedDist>${wildfly.patched.target-dir}</updatedDist>
<outputFile>${wildfly.patch-file}</outputFile>
</configuration>
</execution>
<execution>
<id>create-wildfly-next-patch-file</id>
<phase>prepare-package</phase>
<goals>
<goal>generate-patch</goal>
</goals>
<configuration>
<appliesToDist>${wildfly-next.original.target-dir}</appliesToDist>
<patchConfig>${patchdef-next.xml}</patchConfig>
<updatedDist>${wildfly-next.patched.target-dir}</updatedDist>
<outputFile>${wildfly-next.patch-file}</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<!-- attach the created patch file to the build so it gets installed and deployed -->
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${wildfly.patch-file}</file>
<type>zip</type>
<classifier>wildfly-${wildfly.version}-patch</classifier>
</artifact>
<artifact>
<file>${wildfly-next.patch-file}</file>
<type>zip</type>
<classifier>wildfly-${wildfly-next.version}-patch</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>