-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
82 lines (76 loc) · 2.69 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
<?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>
<groupId>org.snomed.languages</groupId>
<artifactId>snomed-ecl-parser</artifactId>
<version>3.1.1</version>
<name>SNOMED CT Expression Constraint Language Parser</name>
<description>A parser for Expression Constraint Language, a SNOMED CT domain specific language.</description>
<parent>
<groupId>org.snomed</groupId>
<artifactId>snomed-parent-bom</artifactId>
<version>3.6.2</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.5.3</version>
<configuration>
<visitor>false</visitor>
<listener>true</listener>
</configuration>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<id>ihtsdo-releases</id>
<name>ihtsdo-releases</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://nexus3.ihtsdotools.org/repository/maven-releases/</url>
</repository>
<repository>
<id>ihtsdo-snapshots</id>
<name>ihtsdo-snapshots</name>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://nexus3.ihtsdotools.org/repository/maven-snapshots/</url>
</repository>
</repositories>
</project>