75 lines
2.2 KiB
XML
75 lines
2.2 KiB
XML
<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>
|
|
<version>1.0.3</version>
|
|
</parent>
|
|
|
|
<artifactId>database-webapp</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>HSAdmin XML-RPC Database Webapp</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.hsadmin</groupId>
|
|
<artifactId>framework</artifactId>
|
|
<version>${hsadmin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.hsadmin</groupId>
|
|
<artifactId>cust-webapp</artifactId>
|
|
<version>${hsadmin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jpa_2.2_spec</artifactId>
|
|
<version>1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-ejb_3.1_spec</artifactId>
|
|
<version>1.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-validation_2.0_spec</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlrpc</groupId>
|
|
<artifactId>xmlrpc-server</artifactId>
|
|
<version>${xmlrpc.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>database-webapp</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.tomee.maven</groupId>
|
|
<artifactId>tomee-maven-plugin</artifactId>
|
|
<version>${tomee.version}</version>
|
|
<configuration>
|
|
<tomeeVersion>${tomee.version}</tomeeVersion>
|
|
<tomeeClassifier>webprofile</tomeeClassifier>
|
|
<debug>false</debug>
|
|
<debugPort>8000</debugPort>
|
|
<config>${project.basedir}/src/test/tomee/conf</config>
|
|
<libs>
|
|
<lib>${postgresql.lib}</lib>
|
|
</libs>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|