-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
69 lines (59 loc) · 2.01 KB
/
pom.xml
File metadata and controls
69 lines (59 loc) · 2.01 KB
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
<?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>
<groupId>org.ohnlp.backbone</groupId>
<artifactId>backbone-parent</artifactId>
<version>3.0.33</version>
<properties>
<beam.version>2.48.0</beam.version>
<jackson.version>2.14.1</jackson.version>
</properties>
<packaging>
pom
</packaging>
<description>
Provides backbone infrastructure elements for OHNLP toolsets.
</description>
<modules>
<module>API</module>
<module>IO</module>
<module>Transforms</module>
<module>Core</module>
<module>Example-Backbone-Configs</module>
<module>Plugin-Manager</module>
</modules>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub OHNLP Backbone Maven Packages</name>
<url>https://maven.pkg.github.com/OHNLP/Backbone</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-core</artifactId>
<version>${beam.version}</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-core-java</artifactId>
<version>${beam.version}</version>
</dependency>
</dependencies>
</project>