Skip to content

Commit 6fec7a5

Browse files
committed
spring-projects#303 - Upgraded to Spring Boot 2.0 M5.
Removed Spring Framework 5 build profile as Boot 2.0 is based on that already. Removed obsolete custom property to use Spring Data Kay. Removed explicit declaration of the compiler plugin as Boot defaults to Java 8 and compiling with -parameters now.
1 parent 5760555 commit 6fec7a5

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

pom.xml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.0.0.BUILD-SNAPSHOT</version>
15+
<version>2.0.0.M5</version>
1616
</parent>
1717

1818
<modules>
@@ -34,20 +34,9 @@
3434
<properties>
3535

3636
<apt.version>1.1.3</apt.version>
37-
<java.version>1.8</java.version>
38-
<spring-data-releasetrain.version>Kay-RELEASE</spring-data-releasetrain.version>
3937

4038
</properties>
4139

42-
<profiles>
43-
<profile>
44-
<id>spring5</id>
45-
<properties>
46-
<spring.version>5.0.0.M3</spring.version>
47-
</properties>
48-
</profile>
49-
</profiles>
50-
5140
<developers>
5241
<developer>
5342
<id>ogierke</id>
@@ -100,20 +89,6 @@
10089

10190
</dependencies>
10291

103-
<build>
104-
<plugins>
105-
<plugin>
106-
<groupId>org.apache.maven.plugins</groupId>
107-
<artifactId>maven-compiler-plugin</artifactId>
108-
<configuration>
109-
<source>${java.version}</source>
110-
<target>${java.version}</target>
111-
<compilerArgument>-parameters</compilerArgument>
112-
</configuration>
113-
</plugin>
114-
</plugins>
115-
</build>
116-
11792
<repositories>
11893
<repository>
11994
<id>spring-libs-snapshot</id>

0 commit comments

Comments
 (0)