This repository was archived by the owner on May 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
58 lines (52 loc) · 1.88 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
<?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>uk.gov.justice</groupId>
<artifactId>maven-parent-pom</artifactId>
<version>1.7.1</version>
</parent>
<groupId>uk.gov.justice.maven</groupId>
<artifactId>raml-maven</artifactId>
<version>1.6.10-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>raml-for-testing-io</module>
<module>raml-maven-plugin</module>
<module>raml-generator-core</module>
<module>io-utils</module>
<module>raml-parser</module>
<module>raml-maven-plugin-it</module>
<module>raml-generator-for-testing</module>
<module>lint-checker-core</module>
</modules>
<properties>
<common-bom.version>2.4.0</common-bom.version>
<cpp.repo.name>raml-maven</cpp.repo.name>
</properties>
<scm>
<connection>${cpp.scm.connection}</connection>
<developerConnection>${cpp.scm.developerConnection}</developerConnection>
<url>${cpp.scm.url}</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>uk.gov.justice</groupId>
<artifactId>maven-common-bom</artifactId>
<version>${common-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>