Skip to content

Commit 7403e4b

Browse files
committed
Add avaje-jsonb-bom BOM Bill of materials module
1 parent 47068fc commit 7403e4b

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

jsonb-bom/pom.xml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<!-- <parent>-->
7+
<!-- <groupId>io.avaje</groupId>-->
8+
<!-- <artifactId>avaje-jsonb-parent</artifactId>-->
9+
<!-- <version>3.1-RC1</version>-->
10+
<!-- </parent>-->
11+
12+
<groupId>io.avaje</groupId>
13+
<artifactId>avaje-jsonb-bom</artifactId>
14+
<version>3.1-RC1</version>
15+
16+
<packaging>pom</packaging>
17+
<name>avaje jsonb bom</name>
18+
<description>avaje jsonb bill of materials</description>
19+
20+
<properties>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
</properties>
23+
24+
<dependencyManagement>
25+
<dependencies>
26+
<dependency>
27+
<groupId>io.avaje</groupId>
28+
<artifactId>avaje-json-core</artifactId>
29+
<version>3.1-RC1</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>io.avaje</groupId>
33+
<artifactId>avaje-json-node</artifactId>
34+
<version>3.1-RC1</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>io.avaje</groupId>
38+
<artifactId>avaje-jsonb</artifactId>
39+
<version>3.1-RC1</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>io.avaje</groupId>
43+
<artifactId>avaje-jsonb-generator</artifactId>
44+
<version>3.1-RC1</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>io.avaje</groupId>
48+
<artifactId>avaje-jsonb-inject-plugin</artifactId>
49+
<version>3.1-RC1</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>io.avaje</groupId>
53+
<artifactId>avaje-jsonb-jackson</artifactId>
54+
<version>3.1-RC1</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>io.avaje</groupId>
58+
<artifactId>avaje-jsonb-spring-starter</artifactId>
59+
<version>3.1-RC1</version>
60+
</dependency>
61+
</dependencies>
62+
</dependencyManagement>
63+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<module>jsonb-jackson</module>
3737
<module>jsonb-inject-plugin</module>
3838
<module>jsonb-spring-adapter</module>
39+
<module>jsonb-bom</module>
3940
</modules>
4041

4142
<profiles>

0 commit comments

Comments
 (0)