You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
227 lines
6.0 KiB
227 lines
6.0 KiB
<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>de.tvo</groupId>
|
|
<artifactId>web_shared</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1</version>
|
|
<name>web_shared Maven Webapp</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>org.eclnt</id>
|
|
<url>https://www.captaincasa.com/mavenrepository</url>
|
|
</repository>
|
|
<!-- Repository for dependent artifacts -->
|
|
<repository>
|
|
<id>mvnrepository.com</id>
|
|
<url>https://mvnrepository.com/repos/central</url>
|
|
</repository>
|
|
<repository>
|
|
<id>org.outerj</id>
|
|
<url>https://maven.atlassian.com/3rdparty/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<properties>
|
|
<!-- This is the CaptainCasa version to be used. -->
|
|
<cc.version>20251117</cc.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclnt</groupId>
|
|
<artifactId>eclntjsfserverRISC_jakarta</artifactId>
|
|
<version>${cc.version}</version>
|
|
</dependency>
|
|
<dependency> <!-- log4j bridge -->
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>2.17.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>
|
|
jakarta.xml.bind-api</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>
|
|
jakarta.platform</groupId>
|
|
<artifactId>
|
|
jakarta.jakartaee-api</artifactId>
|
|
<version>9.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--
|
|
<dependency>
|
|
<groupId>jakarta.xml.soap</groupId>
|
|
<artifactId>jakarta.xml.soap-api</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-core-jakarta</artifactId>
|
|
<version>5.6.15.Final</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
<artifactId>xmlbeans</artifactId>
|
|
<version>2.6.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>stax-ex</artifactId>
|
|
<groupId>org.jvnet.staxex</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>stax-api</artifactId>
|
|
<groupId>stax</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!--
|
|
<dependency>
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
<artifactId>xmlbeans</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<version>3.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>
|
|
xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>2.12.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>xml-apis</artifactId>
|
|
<groupId>
|
|
xml-apis</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.11.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.16.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dnsjava</groupId>
|
|
<artifactId>dnsjava</artifactId>
|
|
<version>3.5.2</version>
|
|
</dependency>
|
|
<!--
|
|
<dependency>
|
|
<groupId>org.w3c</groupId>
|
|
<artifactId>dom</artifactId>
|
|
<version>2.3.0-jaxb-1.0.6</version>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>org.owasp.esapi</groupId>
|
|
<artifactId>esapi</artifactId>
|
|
<version>2.5.3.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>xml-apis</artifactId>
|
|
<groupId>xml-apis</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>xml-apis</artifactId>
|
|
<groupId>xml-apis-ext</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
|
|
<!-- optional: addon pacakges -->
|
|
<!--
|
|
<dependency>
|
|
<groupId>org.eclnt</groupId>
|
|
<artifactId>eclntccee_jakarta</artifactId>
|
|
<version>${cc.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclnt</groupId>
|
|
<artifactId>eclntpbc_jakarta</artifactId>
|
|
<version>${cc.version}</version>
|
|
</dependency>
|
|
-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.jpg</include>
|
|
<include>**/*.png</include>
|
|
<include>**/*.html</include>
|
|
<include>**/*.icc</include>
|
|
<include>**/*.pdf</include>
|
|
<include>**/*.adoc</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.3.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>21</source>
|
|
<target>21</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|