hs.hsadmin.jee/cust-services/pom.xml

127 lines
3.5 KiB
XML
Raw Normal View History

2021-09-14 17:58:24 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-02-07 19:59:10 +01:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.hsadmin</groupId>
<artifactId>hsadmin-parent</artifactId>
2021-09-13 18:55:46 +02:00
<version>1.0.2</version>
2017-02-07 19:59:10 +01:00
</parent>
<artifactId>cust-webapp</artifactId>
<packaging>war</packaging>
<name>HSAdmin XML-RPC Customers Webapp</name>
2017-02-07 19:59:10 +01:00
<dependencies>
<dependency>
<groupId>de.hsadmin</groupId>
<artifactId>framework</artifactId>
2021-05-21 18:08:19 +02:00
<version>${hsadmin.version}</version>
</dependency>
2017-03-02 14:38:23 +01:00
<dependency>
2021-09-14 17:58:24 +02:00
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>8.0.0</version>
2017-02-07 19:59:10 +01:00
<scope>provided</scope>
</dependency>
<dependency>
2018-08-29 13:45:18 +02:00
<groupId>org.apache.bval</groupId>
<artifactId>org.apache.bval.bundle</artifactId>
2021-05-21 18:08:19 +02:00
<version>${bval.version}</version>
2018-08-29 13:45:18 +02:00
<scope>test</scope>
</dependency>
<dependency>
2018-08-29 13:45:18 +02:00
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa</artifactId>
2021-05-21 18:08:19 +02:00
<version>${openjpa.version}</version>
2018-08-29 13:45:18 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
2021-05-21 18:08:19 +02:00
<version>${liquibase.version}</version>
<scope>test</scope>
</dependency>
2017-02-07 19:59:10 +01:00
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
2021-05-21 18:08:19 +02:00
<version>${xmlrpc.version}</version>
2017-02-07 19:59:10 +01:00
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
2017-03-01 13:28:15 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2017-03-01 13:28:15 +01:00
<artifactId>maven-war-plugin</artifactId>
2021-09-13 18:55:46 +02:00
<version>3.3.1</version>
2017-03-01 13:28:15 +01:00
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin>
2017-03-02 14:38:23 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2021-09-13 18:55:46 +02:00
<version>3.2.0</version>
2017-03-02 14:38:23 +01:00
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/XmlRpcServlet.properties</exclude>
</excludes>
</configuration>
</plugin>
2017-02-07 19:59:10 +01:00
<plugin>
2021-05-21 18:08:19 +02:00
<groupId>org.apache.tomee.maven</groupId>
2017-02-07 19:59:10 +01:00
<artifactId>tomee-maven-plugin</artifactId>
2021-05-21 18:08:19 +02:00
<version>${tomee.version}</version>
2017-02-07 19:59:10 +01:00
<configuration>
2021-05-21 18:08:19 +02:00
<tomeeVersion>${tomee.version}</tomeeVersion>
2017-02-07 19:59:10 +01:00
<tomeeClassifier>webprofile</tomeeClassifier>
<debug>false</debug>
<debugPort>8000</debugPort>
<config>${project.basedir}/src/test/tomee/conf</config>
<libs>
2021-05-21 18:08:19 +02:00
<lib>${postgresql.lib}</lib>
2017-02-07 19:59:10 +01:00
</libs>
</configuration>
</plugin>
2018-08-29 13:45:18 +02:00
<plugin>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa-maven-plugin</artifactId>
2021-09-13 18:55:46 +02:00
<version>${openjpa.version}</version>
<configuration>
2018-08-29 13:45:18 +02:00
<includes>**/bo/*.class</includes>
<addDefaultConstructor>true</addDefaultConstructor>
<enforcePropertyRestrictions>true</enforcePropertyRestrictions>
</configuration>
<executions>
2018-08-29 13:45:18 +02:00
<execution>
<id>enhancer</id>
<phase>process-classes</phase>
<goals>
<goal>enhance</goal>
</goals>
</execution>
</executions>
<dependencies>
2018-08-29 13:45:18 +02:00
<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa</artifactId>
2021-05-21 18:08:19 +02:00
<version>${openjpa.version}</version>
2018-08-29 13:45:18 +02:00
<scope>compile</scope>
</dependency>
</dependencies>
2018-08-29 13:45:18 +02:00
</plugin>
2017-02-07 19:59:10 +01:00
</plugins>
</build>
</project>