Skip to content

Commit 17c298e

Browse files
committed
Restore module inheritance for bom module with removed dependencyManagement in parent.
This should aleviate other build issues. Signed-off-by: Sjoerd Talsma <sjoerd@talsma-ict.nl>
1 parent 3a9b597 commit 17c298e

File tree

1 file changed

+9
-20
lines changed

1 file changed

+9
-20
lines changed

context-propagation-bom/pom.xml

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@
1919
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
2020

2121
<modelVersion>4.0.0</modelVersion>
22+
<parent>
23+
<groupId>nl.talsmasoftware.context</groupId>
24+
<artifactId>context-propagation-root</artifactId>
25+
<version>1.0.10-SNAPSHOT</version>
26+
</parent>
2227

23-
<groupId>nl.talsmasoftware.context</groupId>
2428
<artifactId>context-propagation-bom</artifactId>
25-
<version>1.0.10-SNAPSHOT</version>
2629
<packaging>pom</packaging>
2730

2831
<name>Context propagation (bill-of-materials)</name>
@@ -32,6 +35,10 @@
3235
so modules of this library and crucial transitive jars.
3336
</description>
3437

38+
<properties>
39+
<root.basedir>${project.parent.basedir}</root.basedir>
40+
</properties>
41+
3542
<dependencyManagement>
3643
<dependencies>
3744
<dependency>
@@ -222,22 +229,4 @@
222229
</dependencies>
223230
</dependencyManagement>
224231

225-
<build>
226-
<plugins>
227-
<plugin>
228-
<groupId>org.jacoco</groupId>
229-
<artifactId>jacoco-maven-plugin</artifactId>
230-
<configuration>
231-
<skip>true</skip>
232-
</configuration>
233-
</plugin>
234-
<plugin>
235-
<groupId>org.eluder.coveralls</groupId>
236-
<artifactId>coveralls-maven-plugin</artifactId>
237-
<configuration>
238-
<skip>true</skip>
239-
</configuration>
240-
</plugin>
241-
</plugins>
242-
</build>
243232
</project>

0 commit comments

Comments
 (0)