Skip to content

Commit

Permalink
Fix #214: Introduce maven bom
Browse files Browse the repository at this point in the history
  • Loading branch information
banterCZ committed Sep 12, 2023
1 parent df4b962 commit 0e6090c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
51 changes: 51 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.getlime.core</groupId>
<artifactId>lime-java-core-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
</parent>

<artifactId>core-bom</artifactId>
<description>Bill of Materials for Wultra Core</description>
<packaging>pom</packaging>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.getlime.core</groupId>
<artifactId>annotations</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.core</groupId>
<artifactId>audit-base</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.core</groupId>
<artifactId>http-common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.core</groupId>
<artifactId>rest-client-base</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.core</groupId>
<artifactId>rest-model-base</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<modules>
<module>annotations</module>
<module>audit-base</module>
<module>bom</module>
<module>http-common</module>
<module>rest-model-base</module>
<module>rest-client-base</module>
Expand Down

0 comments on commit 0e6090c

Please sign in to comment.