builder: move dependency management to parent pom
This commit is contained in:
parent
f7de2d1554
commit
ff2e4b9c95
2 changed files with 34 additions and 32 deletions
|
@ -31,26 +31,6 @@
|
||||||
|
|
||||||
<inceptionYear>2016</inceptionYear>
|
<inceptionYear>2016</inceptionYear>
|
||||||
|
|
||||||
<properties>
|
|
||||||
<spring-platform.version>Brussels-SR2</spring-platform.version>
|
|
||||||
<spring-boot.version>1.5.3.RELEASE</spring-boot.version>
|
|
||||||
<mapstream.version>2.3.5</mapstream.version>
|
|
||||||
<map-builder.version>1.0.0</map-builder.version>
|
|
||||||
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.spring.platform</groupId>
|
|
||||||
<artifactId>platform-bom</artifactId>
|
|
||||||
<version>${spring-platform.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -74,39 +54,28 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.speedment.common</groupId>
|
<groupId>com.speedment.common</groupId>
|
||||||
<artifactId>mapstream</artifactId>
|
<artifactId>mapstream</artifactId>
|
||||||
<version>${mapstream.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.assertj</groupId>
|
|
||||||
<artifactId>assertj-core</artifactId>
|
|
||||||
<version>${assertj.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>me.andrz</groupId>
|
<groupId>me.andrz</groupId>
|
||||||
<artifactId>map-builder</artifactId>
|
<artifactId>map-builder</artifactId>
|
||||||
<version>${map-builder.version}</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
<artifactId>checkstyle</artifactId>
|
<artifactId>checkstyle</artifactId>
|
||||||
<version>${checkstyle.version}</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.sevntu-checkstyle</groupId>
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
||||||
<artifactId>sevntu-checks</artifactId>
|
<artifactId>sevntu-checks</artifactId>
|
||||||
<version>${sevntu.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
33
pom.xml
33
pom.xml
|
@ -22,6 +22,12 @@
|
||||||
<checkstyle.version>7.8</checkstyle.version>
|
<checkstyle.version>7.8</checkstyle.version>
|
||||||
<sevntu.version>1.24.0</sevntu.version>
|
<sevntu.version>1.24.0</sevntu.version>
|
||||||
|
|
||||||
|
<spring-platform.version>Brussels-SR2</spring-platform.version>
|
||||||
|
<spring-boot.version>1.5.3.RELEASE</spring-boot.version>
|
||||||
|
<mapstream.version>2.3.5</mapstream.version>
|
||||||
|
<map-builder.version>1.0.0</map-builder.version>
|
||||||
|
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
||||||
|
|
||||||
<mockito.version>1.10.19</mockito.version>
|
<mockito.version>1.10.19</mockito.version>
|
||||||
<assertj.version>3.8.0</assertj.version>
|
<assertj.version>3.8.0</assertj.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -50,6 +56,28 @@
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
|
<artifactId>checkstyle</artifactId>
|
||||||
|
<version>${checkstyle.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.sevntu-checkstyle</groupId>
|
||||||
|
<artifactId>sevntu-checks</artifactId>
|
||||||
|
<version>${sevntu.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.spring.platform</groupId>
|
||||||
|
<artifactId>platform-bom</artifactId>
|
||||||
|
<version>${spring-platform.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.speedment.common</groupId>
|
||||||
|
<artifactId>mapstream</artifactId>
|
||||||
|
<version>${mapstream.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-core</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
|
@ -60,6 +88,11 @@
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
<version>${assertj.version}</version>
|
<version>${assertj.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>me.andrz</groupId>
|
||||||
|
<artifactId>map-builder</artifactId>
|
||||||
|
<version>${map-builder.version}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue