dtr-edc-access-control-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.tractusx.digital_twin_registry</groupId> <artifactId>dtr-edc-access-control-extension</artifactId> <version>0.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!--~ ~ Copyright (c) 2024 Robert Bosch Manufacturing Solutions GmbH and others ~ Copyright (c) 2024 Contributors to the Eclipse Foundation ~ ~ See the NOTICE file(s) distributed with this work for additional ~ information regarding copyright ownership. ~ ~ This program and the accompanying materials are made available under the ~ terms of the Apache License, Version 2.0 which is available at ~ https://www.apache.org/licenses/LICENSE-2.0. ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the ~ License for the specific language governing permissions and limitations ~ under the License. ~ ~ SPDX-License-Identifier: Apache-2.0 --> <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> <parent> <groupId>org.eclipse.tractusx</groupId> <artifactId>digital-twin-registry</artifactId> <version>0.1.1</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>org.eclipse.tractusx.digital_twin_registry</groupId> <artifactId>dtr-edc-access-control-extension</artifactId> <name>Tractus-X Semantic Layer Digital Twin Registry Access Control Extension for Eclipse Dataspace Connector Dataplane</name> <description>Module contains the EDC extension triggering access control calls to the Semantic Layer Digital Twin Registry Service's relevant API endpoint.</description> <packaging>jar</packaging> <organization> <name>Tractus-X project</name> <url>https://projects.eclipse.org/projects/automotive.tractusx</url> </organization> <scm> <url>https://github.com/eclipse-tractusx/sldt-digital-twin-registry/</url> <connection>scm:git:https://github.com/eclipse-tractusx/sldt-digital-twin-registry.git</connection> <developerConnection>scm:git:https://github.com/eclipse-tractusx/sldt-digital-twin-registry.git</developerConnection> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>An Eclipse Project</comments> </license> </licenses> <dependencies> <dependency> <groupId>org.eclipse.edc</groupId> <artifactId>connector-core</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> <exclusions> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>jakarta.inject</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.edc</groupId> <artifactId>data-plane-spi</artifactId> </dependency> <dependency> <groupId>org.eclipse.edc</groupId> <artifactId>data-plane-http-spi</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.edc</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>../..</directory> <includes> <include>LICENSE</include> <include>NOTICE.md</include> <include>DEPENDENCIES</include> </includes> <targetPath>META-INF</targetPath> </resource> <resource> <directory>${project.basedir}/src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>