-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
174 lines (167 loc) · 5.5 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?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>de.tuebingen.uni.sfs.clarind</groupId>
<artifactId>service-conll2tcf</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<dropwizard.version>1.3.9</dropwizard.version>
<wlfxb.version>1.4.3</wlfxb.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<scm>
<url>[email protected]:weblicht/service-conll2tcf.git</url>
<connection>scm:git:[email protected]:weblicht/service-conll2tcf.git</connection>
<developerConnection>scm:git:[email protected]:weblicht/service-conll2tcf.git</developerConnection>
</scm>
<repositories>
<repository>
<id>sfs-clarind-nexus</id>
<name>Internal Releases</name>
<url>https://weblicht.sfs.uni-tuebingen.de/nexus/content/repositories/releases</url>
</repository>
<repository>
<id>sfs-clarind-nexus-snapshots</id>
<name>Internal Snapshots</name>
<url>https://weblicht.sfs.uni-tuebingen.de/nexus/content/repositories/snapshots</url>
</repository>
<repository>
<id>clarin</id>
<url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.tuebingen.uni.sfs.clarind</groupId>
<artifactId>conll2tcf</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>eu.clarin.weblicht</groupId>
<artifactId>wlfxb</artifactId>
<version>${wlfxb.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<id>service</id>
<goals>
<goal>assemble</goal>
</goals>
<phase>package</phase>
<configuration>
<programs>
<program>
<mainClass>de.uni.tuebingen.sfs.clarind.Conllu2tcfApplication</mainClass>
<id>${project.artifactId}</id>
</program>
</programs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.5</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>git</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<format>json</format>
<gitDescribe>
<skip>false</skip>
<always>false</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.4.13</version>
<configuration>
<imageName>weblicht.sfs.uni-tuebingen.de:5000/management/dockerimages/${project.artifactId}</imageName>
<baseImage>anapsix/alpine-java</baseImage>
<entryPoint>["sh", "/${project.artifactId}/bin/${project.artifactId}", "server","/${project.artifactId}/service-config.yaml"]</entryPoint>
<imageTags>
<imageTag>${project.version}</imageTag>
</imageTags>
<resources>
<resource>
<targetPath>/${project.artifactId}/</targetPath>
<directory>${project.build.directory}/appassembler</directory>
</resource>
<resource>
<targetPath>/${project.artifactId}/</targetPath>
<directory>${project.basedir}</directory>
<include>service-config.yaml</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</project>