Skip to content

Commit 4250b00

Browse files
committed
add maven bom #967
1 parent 5812f63 commit 4250b00

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed

bom/pom.xml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2018 JWTK
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
<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 https://maven.apache.org/maven-v4_0_0.xsd">
18+
19+
<modelVersion>4.0.0</modelVersion>
20+
21+
<parent>
22+
<groupId>io.jsonwebtoken</groupId>
23+
<artifactId>jjwt-root</artifactId>
24+
<version>0.12.7-SNAPSHOT</version>
25+
<relativePath>../pom.xml</relativePath>
26+
</parent>
27+
28+
<artifactId>jjwt-bom</artifactId>
29+
<name>JJWT :: BOM</name>
30+
<packaging>pom</packaging>
31+
32+
<properties>
33+
<jjwt.root>${basedir}/..</jjwt.root>
34+
</properties>
35+
36+
37+
<dependencyManagement>
38+
<dependencies>
39+
<!-- Core -->
40+
<dependency>
41+
<groupId>io.jsonwebtoken</groupId>
42+
<artifactId>jjwt</artifactId>
43+
<version>0.12.7-SNAPSHOT</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>io.jsonwebtoken</groupId>
47+
<artifactId>jjwt-api</artifactId>
48+
<version>0.12.7-SNAPSHOT</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.jsonwebtoken</groupId>
52+
<artifactId>jjwt-impl</artifactId>
53+
<version>0.12.7-SNAPSHOT</version>
54+
</dependency>
55+
56+
<!-- Extensions -->
57+
<dependency>
58+
<groupId>io.jsonwebtoken</groupId>
59+
<artifactId>jjwt-orgjson</artifactId>
60+
<version>0.12.7-SNAPSHOT</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>io.jsonwebtoken</groupId>
64+
<artifactId>jjwt-gson</artifactId>
65+
<version>0.12.7-SNAPSHOT</version>
66+
</dependency>
67+
<dependency>
68+
<groupId>io.jsonwebtoken</groupId>
69+
<artifactId>jjwt-jackson</artifactId>
70+
<version>0.12.7-SNAPSHOT</version>
71+
</dependency>
72+
</dependencies>
73+
</dependencyManagement>
74+
</project>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
<module>impl</module>
147147
<module>extensions</module>
148148
<module>tdjar</module>
149+
<module>bom</module>
149150
</modules>
150151

151152
<dependencyManagement>

0 commit comments

Comments
 (0)