-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
55 lines (48 loc) · 1.72 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
<?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>
<parent>
<groupId>com.coremedia.blueprint</groupId>
<artifactId>extensions</artifactId>
<version>1-SNAPSHOT</version>
</parent>
<organization>
<name>Martin Goellnitz for Provocon</name>
</organization>
<artifactId>mock</artifactId>
<name>Mock Commerce Integration - Root Module</name>
<packaging>pom</packaging>
<properties>
<coremedia.project.extension.name>Commerce Integration</coremedia.project.extension.name>
<coremedia.project.extension.modelVersion>1.0</coremedia.project.extension.modelVersion>
<lombok.version>1.18.8</lombok.version>
<testng.version>6.14.3</testng.version>
<groovy.version>2.5.7</groovy.version>
</properties>
<modules>
<module>lc-ecommerce-mock-lib</module>
<module>lc-ecommerce-mock-component</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- we use this for testing only -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>