* 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

View File

@@ -8,9 +8,9 @@
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-spring</artifactId>
<artifactId>parent-spring-4</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-spring</relativePath>
<relativePath>../parent-spring-4</relativePath>
</parent>
<dependencies>
@@ -22,7 +22,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${org.springframework.version}</version>
<version>${spring.version}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -71,7 +71,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.springframework.version>4.3.4.RELEASE</org.springframework.version>
<org.springframework.data.version>1.10.4.RELEASE</org.springframework.data.version>
<rest-assured.version>2.9.0</rest-assured.version>
<querydsl.version>4.1.4</querydsl.version>