Files
imsInterface/interface/configcontainer/pom.xml
2025-06-06 09:15:13 +02:00

133 lines
4.7 KiB
XML

<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-config-bundle-container</artifactId>
<packaging>jar</packaging>
<name>data-interface-config-bundle-container</name>
<version>${mes.interface.version}</version>
<parent>
<groupId>com.itac.interface</groupId>
<artifactId>data-interface</artifactId>
<version>${mes.interface.version}</version>
</parent>
<properties>
<keypassFile>${project.build.directory}/keystore/.keypassFile</keypassFile>
</properties>
<dependencies>
<dependency>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-config-bundle</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces-resources-export</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.itac.tools</groupId>
<artifactId>keystore</artifactId>
<type>zip</type>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-bundle-jar</id>
<phase>initialize</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<stripVersion>true</stripVersion>
<artifactItems>
<artifactItem>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-config-bundle</artifactId>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/classes/META-INF</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces-resources-export</artifactId>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/classes/META-INF</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>keystore</includeArtifactIds>
<outputDirectory>${project.build.directory}/keystore</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<id>read-keystore.password</id>
<phase>process-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
def file = new File(project.properties['keypassFile'])
file.eachLine { line ->
project.properties['keystore.password'] = line
return
}
</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<executions>
<execution>
<id>signing</id>
<goals>
<goal>sign</goal>
</goals>
<phase>prepare-package</phase>
<inherited>true</inherited>
<configuration>
<archiveDirectory>${project.build.directory}/classes/META-INF</archiveDirectory>
<processMainArtifact>false</processMainArtifact>
<processAttachedArtifacts>false</processAttachedArtifacts>
<includes>
<include>**/*.jar</include>
</includes>
<keystore>${project.build.directory}/keystore/.keystore</keystore>
<storepass>${keystore.password}</storepass>
<alias>itac</alias>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>