Skip to content

Commit dad9442

Browse files
authored
Merge pull request Philipinho#43 from jansoren/master
Now able to run mvn with newer jdk installed without getting error
2 parents 3681bcf + de16f14 commit dad9442

File tree

5 files changed

+14
-40
lines changed

5 files changed

+14
-40
lines changed

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,22 @@
3131
<dependency>
3232
<groupId>org.projectlombok</groupId>
3333
<artifactId>lombok</artifactId>
34-
<version>1.18.10</version>
34+
<version>1.18.28</version>
3535
<scope>provided</scope>
3636
</dependency>
3737

38-
3938
</dependencies>
39+
<build>
40+
<plugins>
41+
<plugin>
42+
<groupId>org.apache.maven.plugins</groupId>
43+
<artifactId>maven-compiler-plugin</artifactId>
44+
<version>3.11.0</version>
45+
<configuration>
46+
<source>1.8</source>
47+
<target>1.8</target>
48+
</configuration>
49+
</plugin>
50+
</plugins>
51+
</build>
4052
</project>

0 commit comments

Comments
 (0)