Skip to content

Commit a808d0a

Browse files
authored
Add avaje-jsonb-bom BOM Bill of materials module (#340)
* Add avaje-jsonb-bom BOM Bill of materials module * Tidy up parent (just use maven default) * provided scope in bom for avaje-jsonb-generator
1 parent 4c7060a commit a808d0a

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

jsonb-bom/pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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+
7+
<groupId>io.avaje</groupId>
8+
<artifactId>avaje-jsonb-bom</artifactId>
9+
<version>3.1-RC1</version>
10+
11+
<packaging>pom</packaging>
12+
<name>avaje jsonb bom</name>
13+
<description>avaje jsonb bill of materials</description>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
18+
19+
<dependencyManagement>
20+
<dependencies>
21+
<dependency>
22+
<groupId>io.avaje</groupId>
23+
<artifactId>avaje-json-core</artifactId>
24+
<version>3.1-RC1</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>io.avaje</groupId>
28+
<artifactId>avaje-json-node</artifactId>
29+
<version>3.1-RC1</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>io.avaje</groupId>
33+
<artifactId>avaje-jsonb</artifactId>
34+
<version>3.1-RC1</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>io.avaje</groupId>
38+
<artifactId>avaje-jsonb-generator</artifactId>
39+
<version>3.1-RC1</version>
40+
<scope>provided</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>io.avaje</groupId>
44+
<artifactId>avaje-jsonb-inject-plugin</artifactId>
45+
<version>3.1-RC1</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>io.avaje</groupId>
49+
<artifactId>avaje-jsonb-jackson</artifactId>
50+
<version>3.1-RC1</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>io.avaje</groupId>
54+
<artifactId>avaje-jsonb-spring-starter</artifactId>
55+
<version>3.1-RC1</version>
56+
</dependency>
57+
</dependencies>
58+
</dependencyManagement>
59+
</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)