-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
90 lines (80 loc) · 2.91 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>gov.nist.secauto.oscal.tools.core</groupId>
<artifactId>metaschema-processing-support</artifactId>
<version>1.0.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<packaging>pom</packaging>
<!--
Required for transitive deps of xmlcalabash. If not specified, expect
the following errors:
The following artifacts could not be resolved: org.restlet.jee:org.restlet:jar:2.2.2 ...
20221230 Workaround: TLS certificates for the restlet.org maven service
expired, see the following GitHub issue for details and status updates
about workaround alternative service and target or maven.restlet.org
redirect. https://github.com/restlet/restlet-framework-java/issues/1390
-->
<repositories>
<repository>
<id>Maven Central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>maven.restlet.org</id>
<name>maven.restlet.org</name>
<url>https://maven.restlet.talend.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>11.5</version>
</dependency>
<dependency>
<groupId>com.xmlcalabash</groupId>
<artifactId>xmlcalabash</artifactId>
<version>1.5.3-110</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.nineml/coffeegrinder -->
<dependency>
<groupId>org.nineml</groupId>
<artifactId>coffeegrinder</artifactId>
<version>3.2.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.nineml</groupId>
<artifactId>coffeefilter</artifactId>
<version>3.2.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.nineml</groupId>
<artifactId>coffeesacks</artifactId>
<version>3.2.6</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration/>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>