forked from FasterXML/woodstox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
197 lines (183 loc) · 6.13 KB
/
pom.xml
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.fasterxml</groupId>
<artifactId>oss-parent</artifactId>
<version>33</version>
</parent>
<groupId>net.i-moss.woodstox</groupId>
<artifactId>woodstox-core-jdk16</artifactId>
<version>6.0.2</version>
<packaging>bundle</packaging>
<name>Woodstox</name>
<description> (GBICC compiled)
Woodstox is a high-performance XML processor that
implements Stax (JSR-173), SAX2 and Stax2 APIs
</description>
<developers>
<developer>
<id>cowtowncoder</id>
<name>Tatu Saloranta</name>
<email>[email protected]</email>
</developer>
<developer>
<id>cgh_chen</id>
<name>GuoHui Chen</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>FasterXML</name>
<url>http://fasterxml.com</url>
</organization>
<url>https://github.com/FasterXML/woodstox</url>
<issueManagement>
<url>https://github.com/FasterXML/woodstox/issues</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:FasterXML/woodstox.git</connection>
<developerConnection>scm:git:[email protected]:FasterXML/woodstox.git</developerConnection>
<url>https://github.com/FasterXML/woodstox</url>
<tag>woodstox-core-5.1.0</tag>
</scm>
<properties>
<version.msv>2013.6.1</version.msv>
<!-- Woodstox 5.0 is 1.6+ -->
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<!-- Since our groupId is NOT the same as Java package id, need to explicitly
define. And due to number of packages, let's just include all. -->
<osgi.export>com.ctc.wstx.*;version=${project.version}</osgi.export>
<!-- 5.1 adds "Automatic-Module-Name" for JDK 9 Note: choice between Maven
group id and Java package bit tricky; choose latter at this point (may change
in future) -->
<jdk.module.name>com.ctc.wstx</jdk.module.name>
</properties>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<!-- <excludes> <exclude>test/**</exclude> </excludes> -->
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>failing/*.java</exclude>
<exclude>**/Abstract*.java</exclude>
<exclude>**/Base*.java</exclude>
<exclude>**/*$*.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
<include>**/Test*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions combine.children="merge">
<Automatic-Module-Name>${jdk.module.name}</Automatic-Module-Name>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- First mandatory (and transitive) dependencies -->
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
<!-- 27-Mar-2018, tatu: Upgraded from 3.1 for Woodstox 5.1 -->
<version>3.1.4</version>
</dependency>
<!-- Then optional ones (need for build, possibly for runtime but not always) -->
<!-- First, MSV, needed for RNG/W3C Schema validation -->
<!-- 05-Mar-2009, TSa: This gets messy, as there are multiple alternatives,
even at http://repo1.maven1.maven.org/maven2; + main level ones (group ids
"xsdlib", "relaxngDatatype") + "msv" ones (3 subgroups) + "com.sun.msv",
but only for xsdlib and all with varying sets of dependencies; For now, we'll
just use "msv", which does not properly define dependencies... Also: make
these 'provided', since user needs to include them directly. Not sure what
OSGi thinks about that but... -->
<dependency>
<groupId>net.java.dev.msv</groupId>
<artifactId>msv-core</artifactId>
<version>${version.msv}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>net.java.dev.msv</groupId>
<artifactId>msv-rngconverter</artifactId>
<version>${version.msv}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>net.java.dev.msv</groupId>
<artifactId>xsdlib</artifactId>
<version>${version.msv}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!-- Then OSGi, needed if using OSGi discovery -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.4.0</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<!-- Then test jars -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<!-- <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>private</show>
<serialwarn>true</serialwarn>
<author>true</author>
<doctitle>${project.name} ${project.version} API</doctitle>
<windowtitle>${project.name} ${project.version} API</windowtitle>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>imoss</id>
<name>NexusReleaseRepository</name>
<url>http://www.i-moss.net/nexus/content/repositories/XBRL_GBICC/</url>
<uniqueVersion>false</uniqueVersion>
</repository>
</distributionManagement>
</project>