-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (88 loc) · 3.18 KB
/
pom.xml
File metadata and controls
95 lines (88 loc) · 3.18 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
<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>tools.jackson</groupId>
<artifactId>jackson-base</artifactId>
<version>3.2.0-SNAPSHOT</version>
</parent>
<groupId>tools.jackson.datatype</groupId>
<artifactId>jackson-datatypes-misc-parent</artifactId>
<name>Jackson datatypes: misc (parent pom)</name>
<version>3.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Parent pom for Jackson misc datatype modules
</description>
<modules>
<module>jsr-353</module>
<module>joda-money</module>
<module>json-org</module>
<module>jakarta-jsonp</module>
<module>jakarta-mail</module>
<!-- since 2.19.0 -->
<module>javax-money</module>
<module>moneta</module>
</modules>
<url>https://github.com/FasterXML/jackson-datatypes-misc</url>
<scm>
<connection>scm:git:git@github.com:FasterXML/jackson-datatypes-misc.git</connection>
<developerConnection>scm:git:git@github.com:FasterXML/jackson-datatypes-misc.git</developerConnection>
<url>http://github.com/FasterXML/jackson-datatypes-misc</url>
<tag>HEAD</tag>
</scm>
<properties>
<!-- for Reproducible Builds -->
<project.build.outputTimestamp>2026-02-24T23:11:01Z</project.build.outputTimestamp>
</properties>
<dependencies>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- Test dependencies: JUnit5, AssertJ -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Alas, need to include snapshot reference since otherwise can not find
snapshot of parent... -->
<!-- 09-Aug-2022, tatu: Worse. We need both "new" and "old" Snapshot repositories
because "jackson-annotations" is published via "old"
-->
<repositories>
<!-- 13-May-2025, tatu: and now moving to Central Portal -->
<repository>
<id>central-snapshots</id>
<name>Sonatype Central Portal (snapshots)</name>
<url>https://central.sonatype.com/repository/maven-snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>