hs.hsadmin.jee/pom.xml

45 lines
1.3 KiB
XML
Raw Normal View History

2016-06-10 19:34:43 +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>
<groupId>de.hsadmin</groupId>
<artifactId>hsadmin-parent</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>HSAdmin Parent Project</name>
<modules>
2017-03-01 13:58:11 +01:00
<module>db-migration</module>
2016-06-10 19:34:43 +02:00
<module>framework</module>
2017-02-07 19:59:10 +01:00
<module>cust-services</module>
<module>web</module>
2016-08-03 19:41:01 +02:00
<module>cli</module>
2016-06-10 19:34:43 +02:00
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>