Skip to content

Commit ecc960a

Browse files
committed
fix for Spring parent mess up
1 parent 4a03059 commit ecc960a

1 file changed

Lines changed: 19 additions & 9 deletions

File tree

  • jdk_8_maven/cs/rest/original/proxyprint

jdk_8_maven/cs/rest/original/proxyprint/pom.xml

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<start-class>io.github.proxyprint.kitchen.WebAppConfig</start-class>
1616
</properties>
1717

18-
<parent>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-parent</artifactId>
21-
<!--<version>1.3.5.RELEASE</version>-->
22-
<version>1.4.4.RELEASE</version>
23-
<relativePath />
24-
</parent>
18+
<!-- <parent>-->
19+
<!-- <groupId>org.springframework.boot</groupId>-->
20+
<!-- <artifactId>spring-boot-starter-parent</artifactId>-->
21+
<!-- &lt;!&ndash;<version>1.3.5.RELEASE</version>&ndash;&gt;-->
22+
<!-- <version>1.4.4.RELEASE</version>-->
23+
<!-- <relativePath />-->
24+
<!-- </parent>-->
2525

2626
<build>
2727
<plugins>
@@ -43,9 +43,19 @@
4343
</plugins>
4444
</build>
4545

46-
<dependencies>
47-
46+
<dependencyManagement>
47+
<dependencies>
48+
<dependency>
49+
<groupId>org.springframework.boot</groupId>
50+
<artifactId>spring-boot-starter-parent</artifactId>
51+
<version>1.4.4.RELEASE</version>
52+
<scope>import</scope>
53+
<type>pom</type>
54+
</dependency>
55+
</dependencies>
56+
</dependencyManagement>
4857

58+
<dependencies>
4959
<dependency>
5060
<groupId>org.springframework.boot</groupId>
5161
<artifactId>spring-boot-starter-web</artifactId>

0 commit comments

Comments
 (0)