-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpom.xml
72 lines (66 loc) · 2.79 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
<?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/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tools.jackson.datatype</groupId>
<artifactId>jackson-datatypes-misc-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<artifactId>jackson-datatype-jsr353</artifactId>
<name>Jackson datatype: jsr-353</name>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>Add-on module for Jackson (http://github.com/FasterXML/jackson) to support
working with JSR-353 (JSON-P) node types via data-binding
</description>
<url>http://github.com/FasterXML/jackson-datatypes-misc</url>
<properties>
<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>tools/jackson/datatype/jsr353</packageVersion.dir>
<packageVersion.package>${project.groupId}.jsr353</packageVersion.package>
</properties>
<dependencies>
<!-- Extends Jackson mapper but needs jsr-353 api, impl for tests -->
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.1.4</version>
</dependency>
<!-- and for tests can use the RI -->
<!-- 18-Jan-2025, tatu: Except, not with JPMS because that PoS component
decided to use Automatic Module Name of "java.json". Which it absolutely
cannot, being the _API_ module.
So. We cannot really run tests any more. And with deprecation by Jakarta JSONP
we may want to remove the module. But for now drop dep
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.1.4</version>
<scope>test</scope>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
</plugin>
<!-- 18-Jan-2025, tatu: As per above, we cannot really run tests with JPMS.
So. Disable surefire plug-in altogether
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>