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

206 lines
7.1 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</groupId>
<artifactId>imsinterfaces-ear</artifactId>
<packaging>ear</packaging>
<name>imsinterfaces-ear</name>
<version>${mes.interface.version}</version>
<properties>
<root.context>/imsinterfaces</root.context>
<ear.downloads.directory>${basedir}/../lib/target</ear.downloads.directory>
</properties>
<parent>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces</artifactId>
<version>${mes.interface.version}</version>
</parent>
<dependencies>
<dependency>
<groupId>com.jgoodies</groupId>
<artifactId>jgoodies-looks</artifactId>
</dependency>
<dependency>
<groupId>com.jgoodies</groupId>
<artifactId>jgoodies-forms</artifactId>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>webstart</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>license</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>download</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>util-server</artifactId>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>util-common</artifactId>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>artes-common</artifactId>
</dependency>
<dependency>
<groupId>com.itac.product</groupId>
<artifactId>artes-client</artifactId>
</dependency>
<dependency>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-remote-gui</artifactId>
</dependency>
<dependency>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-gui</artifactId>
</dependency>
<dependency>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-gui-console</artifactId>
</dependency>
<dependency>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-config-bundle-container</artifactId>
</dependency>
<dependency>
<groupId>com.itac.interface</groupId>
<artifactId>imsinterfaces-asm-oib-suite</artifactId>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>com.itac.product</groupId>
<artifactId>artes-dotnet</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.itac.tools</groupId>
<artifactId>license-report-plugin</artifactId>
<executions>
<execution>
<id>license-report</id>
<phase>generate-resources</phase>
<goals>
<goal>license-report</goal>
</goals>
</execution>
</executions>
<configuration>
<applicationId>${clm.applicationId}</applicationId>
<failOnMissingLicense>${failOnMissingLicense}</failOnMissingLicense>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<displayName>iTAC.MES.Suite DataInterface</displayName>
<description>iTAC.MES.Suite DataInterface</description>
<version>5</version>
<defaultJavaBundleDir>lib/</defaultJavaBundleDir>
<earSourceDirectory>${ear.downloads.directory}</earSourceDirectory>
<modules>
<webModule>
<groupId>com.itac.product</groupId>
<artifactId>download</artifactId>
<contextRoot>${root.context}/downloads</contextRoot>
</webModule>
<webModule>
<groupId>com.itac.product</groupId>
<artifactId>webstart</artifactId>
<contextRoot>${root.context}/webstart</contextRoot>
</webModule>
<webModule>
<groupId>com.itac.product</groupId>
<artifactId>license</artifactId>
<contextRoot>${root.context}/license</contextRoot>
</webModule>
</modules>
</configuration>
</plugin>
<plugin>
<groupId>com.itac.tools</groupId>
<artifactId>ear-plugin</artifactId>
<executions>
<execution>
<id>itacEar</id>
<phase>package</phase>
<goals>
<goal>itacEar</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Diese dependency wird benötigt führt zu nullPointer <clientDependencies>
<module> <groupId>com.itac.interface.interfaces</groupId> <artifactId>data-interface-config-bundle-container</artifactId>
<version>${mes.suite.version}</version> <type>jar</type> </module> </clientDependencies -->
<libDir>lib/</libDir>
<modules>
<module>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-gui</artifactId>
<version>${mes.interface.version}</version>
<type>jar</type>
</module>
<module>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-gui-console</artifactId>
<version>${mes.interface.version}</version>
<type>jar</type>
</module>
<module>
<groupId>com.itac.interface.interfaces</groupId>
<artifactId>data-interface-remote-gui</artifactId>
<version>${mes.interface.version}</version>
<type>jar</type>
</module>
</modules>
<serverDependencies>
<module>
<groupId>com.itac.product</groupId>
<artifactId>util-server</artifactId>
<version>${mes.suite.version}</version>
<type>jar</type>
</module>
<module>
<groupId>com.itac.product</groupId>
<artifactId>util-common</artifactId>
<version>${mes.suite.version}</version>
<type>jar</type>
</module>
<module>
<groupId>com.itac.product</groupId>
<artifactId>artes-common</artifactId>
<version>${mes.suite.version}</version>
<type>jar</type>
</module>
</serverDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>