|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <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> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | | - <name>PSE-AA</name> |
| 11 | + <name>WAP Server</name> |
12 | 12 | <description>Web Annotation Protocol Server</description> |
13 | 13 |
|
14 | 14 | <parent> |
15 | 15 | <groupId>org.springframework.boot</groupId> |
16 | 16 | <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>2.5.5</version> |
| 17 | + <version>2.7.5</version> |
18 | 18 | <relativePath/> <!-- lookup parent from repository --> |
19 | 19 | </parent> |
20 | 20 |
|
21 | 21 | <properties> |
22 | 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 23 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 | | - <java.version>1.8</java.version> |
| 24 | + <java.version>17</java.version> |
25 | 25 |
|
26 | 26 | <junit-platform.version>1.2.0</junit-platform.version> |
27 | 27 | <junit-jupiter.version>5.2.0</junit-jupiter.version> |
28 | 28 |
|
29 | 29 | </properties> |
30 | 30 |
|
31 | 31 | <repositories> |
| 32 | + <repository> |
| 33 | + <id>central</id> |
| 34 | + <url>https://repo1.maven.org/maven2</url> |
| 35 | + </repository> |
32 | 36 | <repository> |
33 | 37 | <id>jcenter-snapshots</id> |
34 | 38 | <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> |
36 | 40 | </repository> |
37 | 41 | </repositories> |
38 | 42 |
|
|
109 | 113 | <groupId>org.apache.jena</groupId> |
110 | 114 | <artifactId>apache-jena-libs</artifactId> |
111 | 115 | <type>pom</type> |
112 | | - <version>3.8.0</version> |
| 116 | + <version>4.10.0</version> |
113 | 117 | </dependency> |
114 | 118 | <dependency> |
115 | 119 | <groupId>org.thymeleaf</groupId> |
116 | 120 | <artifactId>thymeleaf-spring5</artifactId> |
117 | 121 | </dependency> |
118 | 122 | <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> |
127 | 126 | </dependency> |
128 | 127 | <dependency> |
129 | 128 | <groupId>org.apache.commons</groupId> |
|
132 | 131 | </dependency> |
133 | 132 | <dependency> |
134 | 133 | <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> |
143 | 136 | </dependency> |
144 | 137 | <dependency> |
145 | 138 | <groupId>com.github.java-json-tools</groupId> |
|
228 | 221 | <dependency> |
229 | 222 | <groupId>com.h2database</groupId> |
230 | 223 | <artifactId>h2</artifactId> |
231 | | - <version>1.4.197</version> |
| 224 | + <version>2.1.214</version> |
232 | 225 | <!--scope>test</scope--> |
233 | 226 | </dependency> |
234 | 227 | <dependency> |
235 | 228 | <groupId>org.postgresql</groupId> |
236 | 229 | <artifactId>postgresql</artifactId> |
237 | | - <version>42.2.1</version> |
| 230 | + <version>42.5.0</version> |
238 | 231 | </dependency> |
239 | 232 | </dependencies> |
240 | 233 |
|
|
356 | 349 | </configuration> |
357 | 350 | </execution> |
358 | 351 | </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> |
386 | 352 | </plugin> |
387 | 353 | </plugins> |
388 | 354 | <resources> |
|
403 | 369 | <plugin> |
404 | 370 | <groupId>org.jacoco</groupId> |
405 | 371 | <artifactId>jacoco-maven-plugin</artifactId> |
406 | | - <version>0.8.2</version> |
| 372 | + <version>0.8.7</version> |
407 | 373 | <reportSets> |
408 | 374 | <reportSet> |
409 | 375 | <reports> |
|
0 commit comments