Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 9714a0f

Browse files
committed
Adding the dataformat-core module
1 parent 9abebd8 commit 9714a0f

5 files changed

Lines changed: 164 additions & 0 deletions

File tree

dataformat-core/.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
.idea/
2+
log/
3+
*.log
4+
bin/
5+
target/
6+
pom.xml.tag
7+
pom.xml.releaseBackup
8+
pom.xml.versionsBackup
9+
pom.xml.next
10+
release.properties
11+
dependency-reduced-pom.xml
12+
buildNumber.properties
13+
.mvn/timing.properties
14+
.mvn/wrapper/maven-wrapper.jar
15+
.metadata
16+
bin/
17+
tmp/
18+
*.tmp
19+
*.bak
20+
*.swp
21+
*~.nib
22+
local.properties
23+
.settings/
24+
.loadpath
25+
.recommenders
26+
27+
.classpath
28+
.project
29+
30+
testJsonSerialization.json

dataformat-core/pom.xml

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>io.adminshell.aas</groupId>
8+
<artifactId>dataformat-parent</artifactId>
9+
<version>${revision}</version>
10+
</parent>
11+
<artifactId>dataformat-core</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>io.adminshell.aas</groupId>
15+
<artifactId>model</artifactId>
16+
<version>${model.version}</version>
17+
<scope>compile</scope>
18+
</dependency>
19+
<dependency>
20+
<groupId>javax.validation</groupId>
21+
<artifactId>validation-api</artifactId>
22+
<version>${javax-validation.version}</version>
23+
<scope>compile</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.fasterxml.jackson.core</groupId>
27+
<artifactId>jackson-annotations</artifactId>
28+
<version>${jackson.version}</version>
29+
<scope>compile</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.fasterxml.jackson.core</groupId>
33+
<artifactId>jackson-databind</artifactId>
34+
<version>${jackson.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.slf4j</groupId>
38+
<artifactId>slf4j-api</artifactId>
39+
<version>${slf4j.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.slf4j</groupId>
43+
<artifactId>slf4j-simple</artifactId>
44+
<version>${slf4j.version}</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.networknt</groupId>
48+
<artifactId>json-schema-validator</artifactId>
49+
<version>${json-schema-validator.version}</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>io.github.classgraph</groupId>
53+
<artifactId>classgraph</artifactId>
54+
<version>${classgraph.version}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.hibernate.validator</groupId>
58+
<artifactId>hibernate-validator</artifactId>
59+
<version>${hibernate.version}</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>junit</groupId>
63+
<artifactId>junit</artifactId>
64+
<version>${junit.version}</version>
65+
<scope>test</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>pl.pragmatists</groupId>
69+
<artifactId>JUnitParams</artifactId>
70+
<version>${junit-params.version}</version>
71+
<scope>test</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.skyscreamer</groupId>
75+
<artifactId>jsonassert</artifactId>
76+
<version>${jsonassert.version}</version>
77+
<scope>test</scope>
78+
</dependency>
79+
</dependencies>
80+
<build>
81+
<plugins>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-compiler-plugin</artifactId>
85+
<configuration>
86+
<source>11</source>
87+
<target>11</target>
88+
</configuration>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.codehaus.mojo</groupId>
92+
<artifactId>flatten-maven-plugin</artifactId>
93+
<version>1.2.2</version>
94+
<configuration>
95+
<updatePomFile>true</updatePomFile>
96+
</configuration>
97+
<executions>
98+
<execution>
99+
<id>flatten</id>
100+
<phase>process-resources</phase>
101+
<goals>
102+
<goal>flatten</goal>
103+
</goals>
104+
</execution>
105+
<execution>
106+
<id>flatten.clean</id>
107+
<phase>clean</phase>
108+
<goals>
109+
<goal>clean</goal>
110+
</goals>
111+
</execution>
112+
</executions>
113+
</plugin>
114+
</plugins>
115+
</build>
116+
<repositories>
117+
<repository>
118+
<id>eis-public-repo</id>
119+
<name>maven-public</name>
120+
<url>https://maven.iais.fraunhofer.de/artifactory/eis-ids-public</url>
121+
</repository>
122+
</repositories>
123+
</project>

dataformat-json/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<version>${model.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
19+
<dependency>
20+
<groupId>io.adminshell.aas</groupId>
21+
<artifactId>dataformat-core</artifactId>
22+
<version>${revision}</version>
23+
</dependency>
1924
<dependency>
2025
<groupId>javax.validation</groupId>
2126
<artifactId>validation-api</artifactId>

dataformat-xml/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<version>${model.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
19+
<dependency>
20+
<groupId>io.adminshell.aas</groupId>
21+
<artifactId>dataformat-core</artifactId>
22+
<version>${revision}</version>
23+
</dependency>
1924
<dependency>
2025
<groupId>com.fasterxml.jackson.core</groupId>
2126
<artifactId>jackson-annotations</artifactId>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<version>${revision}</version>
99
<packaging>pom</packaging>
1010
<modules>
11+
<module>dataformat-core</module>
1112
<module>dataformat-json</module>
1213
<module>dataformat-xml</module>
1314
</modules>

0 commit comments

Comments
 (0)