138 lines
5.7 KiB
XML
138 lines
5.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.muehlencord</groupId>
|
|
<artifactId>shared</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>shared</name>
|
|
<modules>
|
|
<module>configuration</module>
|
|
<module>network</module>
|
|
<module>security</module>
|
|
<module>sharepoint</module>
|
|
<module>util</module>
|
|
<module>jeeutil</module>
|
|
<module>account</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<!-- project setup -->
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<!-- dependencies library version -->
|
|
<junit.version>4.12</junit.version>
|
|
<commons-codec.version>1.10</commons-codec.version>
|
|
<commons-net.version>3.3</commons-net.version>
|
|
<commons-lang3.version>3.4</commons-lang3.version>
|
|
<slf4j.version>1.7.13</slf4j.version>
|
|
<javax-mail.version>1.4.7</javax-mail.version>
|
|
<javaee-api.version>7.0</javaee-api.version>
|
|
<edtFTPj.version>1.5.3</edtFTPj.version>
|
|
<scrypt.version>1.4.0</scrypt.version>
|
|
<bouncycastle.version>1.53</bouncycastle.version>
|
|
<hibernate.version>5.0.6.Final</hibernate.version>
|
|
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
|
<maven-ejb-plugin.version>2.5.1</maven-ejb-plugin.version>
|
|
<maven-surefire-plugin.version>2.19</maven-surefire-plugin.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>${commons-codec.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
<version>${commons-net.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>mail</artifactId>
|
|
<version>${javax-mail.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>${javaee-api.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.enterprisedt</groupId>
|
|
<artifactId>edtFTPj</artifactId>
|
|
<version>${edtFTPj.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.lambdaworks</groupId>
|
|
<artifactId>scrypt</artifactId>
|
|
<version>${scrypt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
<version>${bouncycastle.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-core</artifactId>
|
|
<version>${hibernate.version}</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.muehlencord.shared</groupId>
|
|
<artifactId>shared-util</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<showDeprecation>true</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |