71 lines
2.2 KiB
XML
71 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-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>framework</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>HSAdmin Framework</name>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<testFailureIgnore>true</testFailureIgnore>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>de.hsadmin</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.hsadmin</groupId>
|
||
|
<artifactId>authorization</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.geronimo.specs</groupId>
|
||
|
<artifactId>geronimo-jpa_2.0_spec</artifactId>
|
||
|
<version>1.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.geronimo.specs</groupId>
|
||
|
<artifactId>geronimo-ejb_3.0_spec</artifactId>
|
||
|
<version>1.0.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.geronimo.specs</groupId>
|
||
|
<artifactId>geronimo-validation_1.0_spec</artifactId>
|
||
|
<version>1.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.xmlrpc</groupId>
|
||
|
<artifactId>xmlrpc-server</artifactId>
|
||
|
<version>3.1.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
<version>1.2.17</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|