-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpom.xml
More file actions
128 lines (111 loc) · 4.88 KB
/
Copy pathpom.xml
File metadata and controls
128 lines (111 loc) · 4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2022, 2026 Contributors to the Eclipse Foundation
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ SPDX-License-Identifier: Apache-2.0
-->
<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>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>2.0.4</version>
</parent>
<groupId>jakarta.json.bind</groupId>
<artifactId>jakarta.json.bind-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Jakarta JSON Binding Parent</name>
<description>Jakarta JSON Binding is a standard binding layer for converting Java objects to/from JSON documents.</description>
<url>https://projects.eclipse.org/projects/ee4j.jsonb</url>
<inceptionYear>2016</inceptionYear>
<licenses>
<license>
<name>Eclipse Public License 2.0</name>
<url>https://projects.eclipse.org/license/epl-2.0</url>
<distribution>repo</distribution>
</license>
<license>
<name>GNU General Public License, version 2 with the GNU Classpath Exception</name>
<url>https://projects.eclipse.org/license/secondary-gpl-2.0-cp</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/jakartaee/jsonb-api.git</connection>
<developerConnection>scm:git:git@github.com:jakartaee/jsonb-api.git</developerConnection>
<url>https://github.com/jakartaee/jsonb-api</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/jakartaee/jsonb-api/issues</url>
</issueManagement>
<developers>
<developer>
<id>m0mus</id>
<name>Dmitry Kornilov</name>
<email>dmitry.kornilov@oracle.com</email>
<url>https://dmitrykornilov.net</url>
<organization>Oracle</organization>
<roles>
<role>Project Lead</role>
</roles>
<timezone>CET</timezone>
</developer>
<developer>
<name>Jakarta JSON Binding Developers</name>
<email>jsonb-dev@eclipse.org</email>
<organization>Eclipse Jakarta Binding Working Group</organization>
<organizationUrl>https://projects.eclipse.org/projects/ee4j.jsonb/who</organizationUrl>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>Jakarta JSON Binding Developers</name>
<subscribe>https://accounts.eclipse.org/mailing-list/jsonb-dev</subscribe>
<unsubscribe>https://accounts.eclipse.org/mailing-list/jsonb-dev</unsubscribe>
<archive>https://www.eclipse.org/lists/jsonb-dev</archive>
<post>jsonb-dev@eclipse.org</post>
</mailingList>
</mailingLists>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<nexus.staging.repository>jsonb-maven2-staging</nexus.staging.repository>
<!-- JBake determins the versions of asciidoctor we can use -->
<!-- Which in turn determins the version of jruby we can use-->
<jbake.maven.plugin.version>2.7.0</jbake.maven.plugin.version>
<asciidoctorj.version>2.5.7</asciidoctorj.version>
<asciidoctorj.pdf.version>2.1.6</asciidoctorj.pdf.version>
<asciidoctorj.diagram.version>2.1.2</asciidoctorj.diagram.version>
<asciidoctor.maven.plugin.version>2.1.0</asciidoctor.maven.plugin.version>
<jruby.version>9.2.21.0</jruby.version>
<exec.maven.plugin.version>3.6.3</exec.maven.plugin.version>
<sigtest.version>2.6</sigtest.version>
<maven.antrun.plugin.version>3.2.0</maven.antrun.plugin.version>
<jakarta.json.version>2.1.3</jakarta.json.version>
</properties>
<modules>
<module>api</module>
<module>docs</module>
<module>spec</module>
<module>tck</module>
<module>tck-dist</module>
</modules>
</project>