BLD FIX missing packaging in pom
de.nclazz/maven-boot/pipeline/head There was a failure building this commit Details

develop
Niclas Thobaben 2020-11-30 23:19:08 +01:00
parent e4356bef72
commit 31bfbd71a5
2 changed files with 15 additions and 1 deletions

View File

@ -6,3 +6,16 @@ This Project is the parent Maven project for all [de.nclazz](https://git.l--n.de
It also contains some more or less useful templates and defaults for other projects.
## Usage
Include the <code>maven-boot</code> project as Parent into another maven-project:
````xml
<parent>
<groupId>de.nclazz</groupId>
<artifactId>maven-boot</artifactId>
<version>1.0.0</version>
</parent>
````

View File

@ -5,6 +5,7 @@
<groupId>de.nclazz</groupId>
<artifactId>maven-boot</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
@ -12,7 +13,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.3.1</junit.version>
<junit.jupiter.commons.version>5.3.1</junit.jupiter.commons.version>
<junit.jupiter.commons.version>1.5.2</junit.jupiter.commons.version>
<lombok.version>1.18.16</lombok.version>
<log4j.version>1.2.17</log4j.version>
</properties>