codebuilder-service spring-boot-starter as bom
nclazz/codebuilder/pipeline/head There was a failure building this commit Details

included spring-boot-starter-parent as bom in dependency management to use the root codebuilder pom as parent
pull/45/head
Niclas Thobaben 2021-10-22 18:07:31 +02:00
parent 2aa9ea2d53
commit 7f327c3b65
2 changed files with 21 additions and 6 deletions

View File

@ -7,15 +7,12 @@
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<relativePath/>
<groupId>de.nclazz.apps.codebuilder</groupId>
<artifactId>codebuilder-pom</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>de.nclazz.apps.codebuilder</groupId>
<artifactId>codebuilder-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>codebuilder-service</name>
<description>Template based code generator builder for Apibuilder json specs.</description>
@ -39,6 +36,18 @@
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.5</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
@ -138,6 +147,11 @@
<goal>build-info</goal>
</goals>
</execution>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>

View File

@ -77,6 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>