-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPA-282 +CETP interfaces are extracted into "de.servicehealth:common"…
… library, imports are chaged
- Loading branch information
1 parent
87bf6bd
commit 0ab3384
Showing
34 changed files
with
204 additions
and
69 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
project-repo/de/servicehealth/common/1.0.0-SNAPSHOT/_remote.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Oct 16 22:40:17 AMT 2024 | ||
common-1.0.0-SNAPSHOT-sources.jar>= | ||
common-1.0.0-SNAPSHOT.jar>= | ||
common-1.0.0-SNAPSHOT.pom>= |
Binary file added
BIN
+9.82 KB
project-repo/de/servicehealth/common/1.0.0-SNAPSHOT/common-1.0.0-SNAPSHOT-sources.jar
Binary file not shown.
Binary file added
BIN
+19.2 KB
project-repo/de/servicehealth/common/1.0.0-SNAPSHOT/common-1.0.0-SNAPSHOT.jar
Binary file not shown.
94 changes: 94 additions & 0 deletions
94
project-repo/de/servicehealth/common/1.0.0-SNAPSHOT/common-1.0.0-SNAPSHOT.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>de.servicehealth</groupId> | ||
<artifactId>common</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<properties> | ||
<java.version>17</java.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>jakarta.platform</groupId> | ||
<artifactId>jakarta.jakartaee-bom</artifactId> | ||
<version>10.0.0</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.microprofile.config</groupId> | ||
<artifactId>microprofile-config-api</artifactId> | ||
<version>3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.enterprise</groupId> | ||
<artifactId>jakarta.enterprise.cdi-api</artifactId> | ||
<version>4.1.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.servlet</groupId> | ||
<artifactId>jakarta.servlet-api</artifactId> | ||
<version>6.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.fasterxml.jackson.dataformat</groupId> | ||
<artifactId>jackson-dataformat-cbor</artifactId> | ||
<version>2.17.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.servicehealth.epa4all.libvau</groupId> | ||
<artifactId>lib-vau</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.11.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.18.34</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.13.0</version> | ||
<configuration> | ||
<parameters>true</parameters> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
30 changes: 30 additions & 0 deletions
30
project-repo/de/servicehealth/common/1.0.0-SNAPSHOT/maven-metadata-local.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata modelVersion="1.1.0"> | ||
<groupId>de.servicehealth</groupId> | ||
<artifactId>common</artifactId> | ||
<versioning> | ||
<lastUpdated>20241016184014</lastUpdated> | ||
<snapshot> | ||
<localCopy>true</localCopy> | ||
</snapshot> | ||
<snapshotVersions> | ||
<snapshotVersion> | ||
<extension>pom</extension> | ||
<value>1.0.0-SNAPSHOT</value> | ||
<updated>20241016184014</updated> | ||
</snapshotVersion> | ||
<snapshotVersion> | ||
<extension>jar</extension> | ||
<value>1.0.0-SNAPSHOT</value> | ||
<updated>20241016184014</updated> | ||
</snapshotVersion> | ||
<snapshotVersion> | ||
<classifier>sources</classifier> | ||
<extension>jar</extension> | ||
<value>1.0.0-SNAPSHOT</value> | ||
<updated>20241016184014</updated> | ||
</snapshotVersion> | ||
</snapshotVersions> | ||
</versioning> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</metadata> |
11 changes: 11 additions & 0 deletions
11
project-repo/de/servicehealth/common/maven-metadata-local.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata> | ||
<groupId>de.servicehealth</groupId> | ||
<artifactId>common</artifactId> | ||
<versioning> | ||
<versions> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</versions> | ||
<lastUpdated>20241016184014</lastUpdated> | ||
</versioning> | ||
</metadata> |
6 changes: 3 additions & 3 deletions
6
project-repo/de/servicehealth/lib-cetp/1.0.0-SNAPSHOT/_remote.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Wed Oct 16 07:38:38 AMT 2024 | ||
lib-cetp-1.0.0-SNAPSHOT.pom>= | ||
lib-cetp-1.0.0-SNAPSHOT.jar>= | ||
#Wed Oct 16 22:40:04 AMT 2024 | ||
lib-cetp-1.0.0-SNAPSHOT-sources.jar>= | ||
lib-cetp-1.0.0-SNAPSHOT.jar>= | ||
lib-cetp-1.0.0-SNAPSHOT.pom>= |
Binary file modified
BIN
-2.75 KB
(90%)
project-repo/de/servicehealth/lib-cetp/1.0.0-SNAPSHOT/lib-cetp-1.0.0-SNAPSHOT-sources.jar
Binary file not shown.
Binary file modified
BIN
-4.47 KB
(93%)
project-repo/de/servicehealth/lib-cetp/1.0.0-SNAPSHOT/lib-cetp-1.0.0-SNAPSHOT.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.