-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
105 lines (98 loc) · 3.32 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
<?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/xsdFragment/maven-4.0.0.xsdFragment">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.mycore</groupId>
<artifactId>mycore-parent</artifactId>
<version>54-SNAPSHOT</version>
</parent>
<groupId>org.mycore.xsonify</groupId>
<artifactId>xsonify-parent</artifactId>
<version>1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>MIT-License</name>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/MyCoRe-Org/xsonify.git</connection>
<developerConnection>scm:git:https://github.com/MyCoRe-Org/xsonify.git</developerConnection>
<url>https://github.com/MyCoRe-Org/xsonify/tree/master</url>
<tag>HEAD</tag>
</scm>
<properties>
<jackson.version>2.15.0</jackson.version>
<license.name>mit</license.name>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>xsonify-serializer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>xsonify-xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>xsonify-xsd</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<developers>
<developer>
<id>mcrmeich</id>
<name>Matthias Eichner</name>
<email>matthias.eichner (at) uni-jena.de</email>
<organization>Friedrich-Schiller-Universität Jena, Thüringer Universitäts- und Landesbibliothek</organization>
<organizationUrl>https://www.thulb.uni-jena.de/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<modules>
<module>xsonify-xml</module>
<module>xsonify-xsd</module>
<module>xsonify-serializer</module>
<module>xsonify-integration-tests</module>
</modules>
</project>