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

111 lines
3.2 KiB
XML
Raw Normal View History

2018-08-24 19:56:54 +02:00
<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>
<parent>
<groupId>de.hsadmin</groupId>
<artifactId>hsadmin-parent</artifactId>
2021-10-27 20:50:17 +02:00
<version>1.0.3</version>
2018-08-24 19:56:54 +02:00
</parent>
<artifactId>ldap-webapp</artifactId>
<packaging>war</packaging>
<name>HSAdmin XML-RPC LDAP Account Webapp</name>
<dependencies>
<dependency>
<groupId>de.hsadmin</groupId>
<artifactId>framework</artifactId>
2021-05-21 18:08:19 +02:00
<version>${hsadmin.version}</version>
2018-08-24 19:56:54 +02:00
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
2021-05-21 18:08:19 +02:00
<artifactId>geronimo-jpa_2.2_spec</artifactId>
2018-08-24 19:56:54 +02:00
<version>1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
2021-05-21 18:08:19 +02:00
<artifactId>geronimo-ejb_3.1_spec</artifactId>
<version>1.0.2</version>
2018-08-24 19:56:54 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
2021-05-21 18:08:19 +02:00
<artifactId>geronimo-validation_2.0_spec</artifactId>
2018-08-24 19:56:54 +02:00
<version>1.1</version>
</dependency>
<dependency>
<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-24 19:56:54 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa</artifactId>
2021-05-21 18:08:19 +02:00
<version>${openjpa.version}</version>
2018-08-24 19:56:54 +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>
2018-08-24 19:56:54 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
2021-05-21 18:08:19 +02:00
<version>${xmlrpc.version}</version>
2018-08-24 19:56:54 +02: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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.2</version>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/XmlRpcServlet.properties</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.openejb.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
2021-05-21 18:08:19 +02:00
<version>${tomee.version}</version>
2018-08-24 19:56:54 +02:00
<configuration>
2021-05-21 18:08:19 +02:00
<tomeeVersion>${tomee.version}</tomeeVersion>
2018-08-24 19:56:54 +02:00
<tomeeClassifier>webprofile</tomeeClassifier>
<debug>false</debug>
<debugPort>8000</debugPort>
<context>ldap-webapp</context>
<config>${project.basedir}/src/test/tomee/conf</config>
<libs>
2021-05-21 18:08:19 +02:00
<lib>${postgresql.lib}</lib>
2018-08-24 19:56:54 +02:00
</libs>
</configuration>
</plugin>
</plugins>
</build>
</project>