Skip to content

Commit 5a3ab45

Browse files
committed
some cases fixed
1 parent 3baa0f2 commit 5a3ab45

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Spring Data;
1010
* PostgreSQL database;
1111
* Hibernate;
12+
* Lombok;
1213
* Spring Security (as basic authentication).
1314

1415
#### To run this application use:

pom.xml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<groupId>com.kaluzny</groupId>
7-
<artifactId>spring-boot-rest-api-postgresql</artifactId>
7+
<artifactId>spring-boot2-rest-api-postgresql</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

@@ -66,23 +66,12 @@
6666

6767
<build>
6868
<plugins>
69-
<plugin>
70-
<groupId>org.springframework.boot</groupId>
71-
<artifactId>spring-boot-maven-plugin</artifactId>
72-
<executions>
73-
<execution>
74-
<goals>
75-
<goal>repackage</goal>
76-
</goals>
77-
</execution>
78-
</executions>
79-
</plugin>
8069
<plugin>
8170
<groupId>org.apache.maven.plugins</groupId>
8271
<artifactId>maven-compiler-plugin</artifactId>
8372
<configuration>
84-
<source>8</source>
85-
<target>8</target>
73+
<source>${java.version}</source>
74+
<target>${java.version}</target>
8675
</configuration>
8776
</plugin>
8877
</plugins>

0 commit comments

Comments
 (0)