Skip to content

Commit b481dac

Browse files
committed
maven build aligned with gradle
1 parent 3c5b6c4 commit b481dac

File tree

1 file changed

+19
-53
lines changed

1 file changed

+19
-53
lines changed

pom.xml

Lines changed: 19 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,39 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<groupId>edu.kit.scc.dem.wapsrv</groupId>
7-
<artifactId>PSE-AA</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
7+
<artifactId>wap-server</artifactId>
8+
<version>1.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

11-
<name>PSE-AA</name>
11+
<name>WAP Server</name>
1212
<description>Web Annotation Protocol Server</description>
1313

1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.5.5</version>
17+
<version>2.7.5</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

2121
<properties>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24-
<java.version>1.8</java.version>
24+
<java.version>17</java.version>
2525

2626
<junit-platform.version>1.2.0</junit-platform.version>
2727
<junit-jupiter.version>5.2.0</junit-jupiter.version>
2828

2929
</properties>
3030

3131
<repositories>
32+
<repository>
33+
<id>central</id>
34+
<url>https://repo1.maven.org/maven2</url>
35+
</repository>
3236
<repository>
3337
<id>jcenter-snapshots</id>
3438
<name>jcenter</name>
35-
<url>http://oss.jfrog.org/artifactory/oss-snapshot-local/</url>
39+
<url>https://oss.jfrog.org/artifactory/oss-snapshot-local/</url>
3640
</repository>
3741
</repositories>
3842

@@ -109,21 +113,16 @@
109113
<groupId>org.apache.jena</groupId>
110114
<artifactId>apache-jena-libs</artifactId>
111115
<type>pom</type>
112-
<version>3.8.0</version>
116+
<version>4.10.0</version>
113117
</dependency>
114118
<dependency>
115119
<groupId>org.thymeleaf</groupId>
116120
<artifactId>thymeleaf-spring5</artifactId>
117121
</dependency>
118122
<dependency>
119-
<groupId>org.apache.commons</groupId>
120-
<artifactId>commons-rdf-api</artifactId>
121-
<version>0.5.0</version>
122-
</dependency>
123-
<dependency>
124-
<groupId>org.apache.commons</groupId>
125-
<artifactId>commons-rdf-jena</artifactId>
126-
<version>0.5.0</version>
123+
<groupId>org.apache.jena</groupId>
124+
<artifactId>jena-commonsrdf</artifactId>
125+
<version>4.10.0</version>
127126
</dependency>
128127
<dependency>
129128
<groupId>org.apache.commons</groupId>
@@ -132,14 +131,8 @@
132131
</dependency>
133132
<dependency>
134133
<groupId>org.apache.jena</groupId>
135-
<artifactId>jena-fuseki</artifactId>
136-
<version>3.8.0</version>
137-
<type>pom</type>
138-
</dependency>
139-
<dependency>
140-
<groupId>org.apache.jena</groupId>
141-
<artifactId>jena-fuseki-embedded</artifactId>
142-
<version>3.8.0</version>
134+
<artifactId>jena-fuseki-main</artifactId>
135+
<version>4.10.0</version>
143136
</dependency>
144137
<dependency>
145138
<groupId>com.github.java-json-tools</groupId>
@@ -228,13 +221,13 @@
228221
<dependency>
229222
<groupId>com.h2database</groupId>
230223
<artifactId>h2</artifactId>
231-
<version>1.4.197</version>
224+
<version>2.1.214</version>
232225
<!--scope>test</scope-->
233226
</dependency>
234227
<dependency>
235228
<groupId>org.postgresql</groupId>
236229
<artifactId>postgresql</artifactId>
237-
<version>42.2.1</version>
230+
<version>42.5.0</version>
238231
</dependency>
239232
</dependencies>
240233

@@ -356,33 +349,6 @@
356349
</configuration>
357350
</execution>
358351
</executions>
359-
<configuration>
360-
<systemPropertyVariables>
361-
<jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
362-
</systemPropertyVariables>
363-
</configuration>
364-
</plugin>
365-
<plugin>
366-
<groupId>org.eluder.coveralls</groupId>
367-
<artifactId>coveralls-maven-plugin</artifactId>
368-
<version>4.3.0</version>
369-
<dependencies>
370-
<dependency>
371-
<groupId>javax.xml.bind</groupId>
372-
<artifactId>jaxb-api</artifactId>
373-
<version>2.3.1</version>
374-
</dependency>
375-
</dependencies>
376-
<configuration>
377-
<repoToken>${env.repoToken}</repoToken>
378-
<sourceDirectories>
379-
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
380-
<sourceDirectory>${basedir}/src/installer/java</sourceDirectory>
381-
</sourceDirectories>
382-
<excludes>
383-
<exclude>**/*WapServerInstaller.java</exclude>
384-
</excludes>
385-
</configuration>
386352
</plugin>
387353
</plugins>
388354
<resources>
@@ -403,7 +369,7 @@
403369
<plugin>
404370
<groupId>org.jacoco</groupId>
405371
<artifactId>jacoco-maven-plugin</artifactId>
406-
<version>0.8.2</version>
372+
<version>0.8.7</version>
407373
<reportSets>
408374
<reportSet>
409375
<reports>

0 commit comments

Comments
 (0)