-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
46 lines (41 loc) · 1.52 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
<?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.14</version>
</parent>
<groupId>se.vgregion.reklistan</groupId>
<artifactId>reklistan-omstallning-system</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>${project.artifactId}</name>
<modules>
<module>core-bc</module>
</modules>
<properties>
<compileSource>1.7</compileSource>
<compileTarget>1.7</compileTarget>
<spring.fw.version>3.2.14.RELEASE</spring.fw.version>
<jsf.version>2.2.20</jsf.version>
<liferay.version>7.2.1</liferay.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.liferay.portal</groupId>
<artifactId>release.portal.bom</artifactId>
<version>${liferay.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>