Skip to content

Commit

Permalink
move dependencyManagement for bytebuddy and assertj outside of profile
Browse files Browse the repository at this point in the history
could help with #188
  • Loading branch information
bodewig committed Jul 29, 2020
1 parent bc24a36 commit 43175c5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
15 changes: 0 additions & 15 deletions pom.xml
Expand Up @@ -497,21 +497,6 @@
<modules>
<module>xmlunit-assertj</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.10</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
<profile>
<id>java14+</id>
Expand Down
16 changes: 16 additions & 0 deletions xmlunit-assertj/pom.xml
Expand Up @@ -64,4 +64,20 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.10</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>

</project>

0 comments on commit 43175c5

Please sign in to comment.