Specify lombok version in parent pom
This commit is contained in:
parent
b4900bdcfe
commit
309ace6c76
2 changed files with 6 additions and 4 deletions
|
@ -3,9 +3,6 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<properties>
|
|
||||||
<lombok.version>1.16.18</lombok.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.kemitix</groupId>
|
<groupId>net.kemitix</groupId>
|
||||||
|
@ -38,7 +35,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
<version>${lombok.version}</version>
|
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
6
pom.xml
6
pom.xml
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
<spring-platform.version>Brussels-SR3</spring-platform.version>
|
<spring-platform.version>Brussels-SR3</spring-platform.version>
|
||||||
<spring-boot.version>1.5.4.RELEASE</spring-boot.version>
|
<spring-boot.version>1.5.4.RELEASE</spring-boot.version>
|
||||||
|
<lombok.version>1.16.18</lombok.version>
|
||||||
<mapstream.version>2.3.5</mapstream.version>
|
<mapstream.version>2.3.5</mapstream.version>
|
||||||
<map-builder.version>1.0.0</map-builder.version>
|
<map-builder.version>1.0.0</map-builder.version>
|
||||||
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
||||||
|
@ -88,6 +89,11 @@
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<version>${lombok.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.speedment.common</groupId>
|
<groupId>com.speedment.common</groupId>
|
||||||
<artifactId>mapstream</artifactId>
|
<artifactId>mapstream</artifactId>
|
||||||
|
|
Loading…
Reference in a new issue