* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* Added README

* [BAEL-6729] - Spring modules needs a spring parent

* [BAEL-6729] - Spring modules needs a spring parent
This commit is contained in:
Amit Pandey
2018-06-02 20:14:15 +05:30
committed by Grzegorz Piwowarek
parent 9c26833fa1
commit 9245ba0925
43 changed files with 236 additions and 306 deletions
+5 -6
View File
@@ -9,9 +9,9 @@
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-spring</artifactId>
<artifactId>parent-spring-5</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-spring</relativePath>
<relativePath>../parent-spring-5</relativePath>
</parent>
<dependencies>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.version}</version>
<version>${spring.version}</version>
</dependency>
<!-- thymeleaf dependencies -->
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${springframework.version}</version>
<version>${spring.version}</version>
</dependency>
<!-- groovy template dependency -->
@@ -93,7 +93,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${springframework.version}</version>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -159,7 +159,6 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springframework.version>5.0.2.RELEASE</springframework.version>
<maven-war-plugin.version>3.2.0</maven-war-plugin.version>
<maven.compiler.version>3.7.0</maven.compiler.version>
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>