Logging properties and Java 9 changes for pom.xml

This commit is contained in:
tilman
2018-06-07 20:50:35 +02:00
parent 8d25c7180e
commit 5f32c94f25
3 changed files with 15 additions and 1 deletions
+10 -1
View File
@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<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.tilman</groupId>
@@ -28,6 +29,14 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!-- needed for Java 9, s. https://www.concretepage.com/forum/thread?qid=531 -->
<!-- On the other hand, Spring Boot 1 will not work with Java 9 anyways... s. http://dev.solita.fi/2018/01/24/Java9-modules-Spring-Boot-2-Docker.html#spring-boot-2 -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
<properties>