-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add controlplane-postgres flavor (#10)
- Loading branch information
1 parent
fa3fb9f
commit c1405d3
Showing
24 changed files
with
971 additions
and
14 deletions.
There are no files selected for viewing
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
Submodule edc
updated
from 330534 to febacc
2 changes: 1 addition & 1 deletion
2
edc-controlplane/edc-controlplane-memory/src/main/docker/Dockerfile
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,272 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>edc-controlplane</artifactId> | ||
<groupId>net.catenax.edc</groupId> | ||
<version>0.0.2-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>edc-controlplane-postgresql</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<finalName>${project.artifactId}</finalName> | ||
<shadedArtifactAttached>true</shadedArtifactAttached> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
<transformers> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<mainClass>org.eclipse.dataspaceconnector.boot.system.runtime.BaseRuntime | ||
</mainClass> | ||
</transformer> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource> | ||
META-INF/services/org.eclipse.dataspaceconnector.spi.system.ServiceExtension | ||
</resource> | ||
</transformer> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource> | ||
META-INF/services/org.eclipse.dataspaceconnector.spi.system.VaultExtension | ||
</resource> | ||
</transformer> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource> | ||
META-INF/services/org.eclipse.dataspaceconnector.spi.system.ConfigurationExtension | ||
</resource> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> | ||
</transformers> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- AAS Controller --> | ||
<dependency> | ||
<groupId>net.catenax.edc.extensions</groupId> | ||
<artifactId>aas-controller</artifactId> | ||
</dependency> | ||
|
||
<!-- Postgresql Migration --> | ||
<dependency> | ||
<groupId>net.catenax.edc.extensions</groupId> | ||
<artifactId>postgresql-migration</artifactId> | ||
</dependency> | ||
|
||
<!-- Config --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>filesystem-configuration</artifactId> | ||
</dependency> | ||
|
||
<!-- Vault --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>azure-vault</artifactId> | ||
</dependency> | ||
|
||
<!-- APIs --> | ||
<dependency> <!-- Once org.eclipse.dataspaceconnector:data-management-api is ready this will go away --> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>control-api</artifactId> | ||
</dependency> | ||
<!-- | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>data-management-api</artifactId> | ||
</dependency> | ||
--> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>observability-api</artifactId> | ||
</dependency> | ||
|
||
<!-- IDS --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-api-configuration</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-api-multipart-dispatcher-v1</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-api-multipart-endpoint-v1</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-api-transform-v1</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>ids-token-validation</artifactId> | ||
</dependency> | ||
|
||
<!-- Stores --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-asset-index</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-contractdefinition-store</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-contractnegotiation-store</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-transferprocess-store</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-policy-store</artifactId> | ||
</dependency> | ||
|
||
<!-- Core --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>core-base</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>core-boot</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>transfer</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>contract</artifactId> | ||
</dependency> | ||
|
||
<!-- IAM --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>iam-mock</artifactId> | ||
</dependency> | ||
|
||
<!-- Telemetry --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>core-micrometer</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>jersey-micrometer</artifactId> | ||
<version>${org.eclipse.dataspaceconnector.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>jetty-micrometer</artifactId> | ||
<version>${org.eclipse.dataspaceconnector.version}</version> | ||
</dependency> | ||
|
||
<!-- Logging --> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>jdk-logger-monitor</artifactId> | ||
</dependency> | ||
|
||
<!-- Supportive --> | ||
<dependency> <!-- includes jetty and jersey --> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>http</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>sql-pool-apache-commons-pool</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>transaction-local</artifactId> | ||
</dependency> | ||
|
||
<dependency> <!-- http-posts EndpointDataReference to configured external service --> | ||
<groupId>org.eclipse.dataspaceconnector</groupId> | ||
<artifactId>http-receiver</artifactId> | ||
</dependency> | ||
|
||
<!-- Other --> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.ws.rs</groupId> | ||
<artifactId>jakarta.ws.rs-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<profiles> | ||
<profile> | ||
<id>with-docker-image</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.spotify</groupId> | ||
<artifactId>dockerfile-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<contextDirectory>.</contextDirectory> | ||
<dockerfile>src/main/docker/Dockerfile</dockerfile> | ||
<repository>${project.artifactId}</repository> | ||
<tag>${project.version}</tag> | ||
<buildArgs> | ||
<JAR>target/${project.artifactId}.jar</JAR> | ||
</buildArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.