-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
118 lines (105 loc) · 4.3 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
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.openepcis</groupId>
<artifactId>jsonld-xsd-converter</artifactId>
<name>jsonld-xsd-converter</name>
<description>Convert the JSON-LD/RDF based schema contents into XSD by reading them from URL/contents and building the relations amount each of theRDF tuple</description>
<version>1.0.0-SNAPSHOT</version>
<properties>
<lombok.version>1.18.34</lombok.version>
<jackson.version>2.17.2</jackson.version>
<jena.version>5.0.0</jena.version>
<jakarta.xml.bind.version>4.0.2</jakarta.xml.bind.version>
<junit.version>5.10.3</junit.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name></name>
<url></url>
</license>
</licenses>
<developers>
<developer>
<name>Sven Boeckelmann</name>
<email>[email protected]</email>
<organization>benelog GmbH & Co. KG</organization>
<organizationUrl>https://www.benelog.com</organizationUrl>
</developer>
<developer>
<name>Aravinda Baliga B</name>
<email>[email protected]</email>
<organization>benelog GmbH & Co. KG</organization>
<organizationUrl>https://www.benelog.com</organizationUrl>
</developer>
</developers>
<dependencies>
<!-- For Getter/Setter methods -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- For ObjectMapper and Java <-> JSON serialization/deserialization -->
<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>
<!-- Apache Jena for reading JSON-LD/RDF data, filtering and building relations -->
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>${jena.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>${jena.version}</version>
</dependency>
<!-- Jakarta XML Binding API for generating Java classes from XSD -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta.xml.bind.version}</version>
</dependency>
<!-- For writing the tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin</artifactId>
<version>4.0.8</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>${basedir}</schemaDirectory>
<bindingDirectory>${basedir}/src/main/resources/schema</bindingDirectory>
<bindingIncludes>custom-binding.xjb</bindingIncludes>
</configuration>
</plugin>
</plugins>
</build>
</project>