Skip to content

Commit 390ec2c

Browse files
committed
tweak for java10
1 parent 40bc236 commit 390ec2c

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

‎pom.xml

+13-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.0.0.RELEASE</version>
17+
<version>2.0.2.RELEASE</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>1.10</java.version>
2525
</properties>
2626

2727
<dependencies>
@@ -49,6 +49,17 @@
4949
<artifactId>spring-boot-starter-test</artifactId>
5050
<scope>test</scope>
5151
</dependency>
52+
53+
<dependency>
54+
<groupId>javax.xml.bind</groupId>
55+
<artifactId>jaxb-api</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.projectlombok</groupId>
59+
<artifactId>lombok</artifactId>
60+
<optional>true</optional>
61+
<version>1.16.22</version>
62+
</dependency>
5263
</dependencies>
5364

5465
<build>

‎src/main/resources/application.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
22
spring.datasource.url = jdbc:mysql://localhost:3306/notes_app?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false
33
spring.datasource.username = root
4-
spring.datasource.password = callicoder
4+
spring.datasource.password =
55

66

77
## Hibernate Properties

0 commit comments

Comments
 (0)