-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
122 lines (113 loc) · 4.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>uk.gov.justice</groupId>
<artifactId>maven-framework-parent-pom</artifactId>
<version>1.12.3</version>
</parent>
<artifactId>framework-tools</artifactId>
<packaging>pom</packaging>
<version>5.3.4-SNAPSHOT</version>
<properties>
<cpp.repo.name>framework-tools</cpp.repo.name>
<common-bom.version>1.28.0</common-bom.version>
<framework-api.version>3.1.1</framework-api.version>
<framework.version>5.1.2</framework.version>
<event-store.version>1.1.9</event-store.version>
<wildfly.swarm.version>2017.11.0</wildfly.swarm.version>
<test.utils.version>1.19.1</test.utils.version>
<schema-service.version>1.4.3</schema-service.version>
<version.swarm.fraction-plugin>77</version.swarm.fraction-plugin>
<slf4j-jboss-logmanager.version>1.0.4.GA</slf4j-jboss-logmanager.version>
<jboss-logmanager.version>2.1.2.Final</jboss-logmanager.version>
</properties>
<modules>
<module>framework-tools-replay</module>
<module>archive-loader-fraction</module>
<module>replay-tool-test</module>
</modules>
<scm>
<connection>${cpp.scm.connection}</connection>
<developerConnection>${cpp.scm.developerConnection}</developerConnection>
<url>${cpp.scm.url}</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>bom-all</artifactId>
<version>${wildfly.swarm.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>uk.gov.justice</groupId>
<artifactId>maven-common-bom</artifactId>
<version>${common-bom.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>uk.gov.justice.framework-api</groupId>
<artifactId>framework-api-bom</artifactId>
<version>${framework-api.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>framework-bom</artifactId>
<version>${framework.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>uk.gov.justice.event-store</groupId>
<artifactId>event-store-bom</artifactId>
<version>${event-store.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${plugins.jacoco.version}</version>
<configuration>
<excludes>
<exclude>uk/gov/justice/framework/tools/replay/Replay.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integration-tests</id>
<activation>
<property>
<name>run.it</name>
<value>!false</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>