-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·57 lines (52 loc) · 1.96 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<!--
This is the System-level Maven POM. Usage: Define all truly common things for the system here. For example:
versions of third-party dependencies used throughout the system. Template version: 1.5
Generation time : 2015-01-14 09:02:50 CET
-->
<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>se.vgregion.common</groupId>
<artifactId>profile-open</artifactId>
<version>2.15</version>
</parent>
<groupId>se.vgregion.vardplatspusslet</groupId>
<artifactId>vardplatspusslet</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>${project.artifactId}</name>
<modules>
<module>core-bc</module>
</modules>
<!--NB! SCM config below assumes system name equals VGR subversion/googlecode project name! -->
<!-- Open Source repo -->
<!--<scm>
<developerConnection>scm:svn:https://blandbarhet.googlecode.com/svn/trunk</developerConnection>
<url>https://blandbarhet.googlecode.com/svn/trunk</url>
</scm>-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<!-- <release>11</release> TODO enable -->
</configuration>
</plugin>
</plugins>
</build>
<properties>
<compileSource>11</compileSource>
<compileTarget>11</compileTarget>
<junit.version>4.8.1</junit.version>
<log4j.version>1.2.16</log4j.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.6.1</slf4j.version>
<spring.fw.version>4.3.14.RELEASE</spring.fw.version>
<hibernate.version>5.4.4.Final</hibernate.version>
<h2.version>1.4.199</h2.version>
</properties>
</project>