META-INF.maven.io.telicent.smart-caches.graph.scg-system.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) Telicent Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://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. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.telicent.smart-caches.graph</groupId> <artifactId>scg-base</artifactId> <version>0.82.7</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>scg-system</artifactId> <packaging>jar</packaging> <name>Telicent Smart Cache Graph - System</name> <description>System code - plugins, extensions, entrypoints etc. - for Smart Cache Graph</description> <properties> <dependency.yaml-config>1.0.0</dependency.yaml-config> <dependency.testcontainers>1.20.3</dependency.testcontainers> <dependency.junit5>5.11.3</dependency.junit5> </properties> <dependencies> <!-- Internal dependencies --> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-fuseki-main</artifactId> </dependency> <!-- ABAC engine --> <dependency> <groupId>io.telicent.jena</groupId> <artifactId>rdf-abac-fuseki</artifactId> </dependency> <!-- Jena Fuseki Kafka --> <dependency> <groupId>io.telicent.jena</groupId> <artifactId>jena-fuseki-kafka-module</artifactId> </dependency> <!-- Authentication --> <dependency> <groupId>io.telicent.smart-caches</groupId> <artifactId>jwt-auth-common</artifactId> </dependency> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-aws</artifactId> </dependency> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-servlet5</artifactId> </dependency> <!-- GraphQL --> <dependency> <groupId>io.telicent.jena.graphql</groupId> <artifactId>graphql-fuseki-module</artifactId> </dependency> <dependency> <groupId>io.telicent.jena.graphql</groupId> <artifactId>telicent-graph-schema</artifactId> </dependency> <!-- External dependencies --> <!-- Logging Dependencies --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <!-- OpenTelemetry dependencies --> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-api</artifactId> </dependency> <dependency> <groupId>io.opentelemetry.javaagent</groupId> <artifactId>opentelemetry-javaagent</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-semconv</artifactId> </dependency> <!-- Testing dependencies --> <dependency> <groupId>io.telicent.public</groupId> <artifactId>jwt-servlet-auth-core</artifactId> <version>${dependency.jwt-servlet-auth}</version> <classifier>tests</classifier> <scope>test</scope> <exclusions> <exclusion> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> </exclusion> </exclusions> </dependency> <!-- Open Telemetry - testing --> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-exporter-logging</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-sdk</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-sdk-testing</artifactId> <scope>test</scope> </dependency> <!-- Logging - testing --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <!-- Kafka - testing --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>kafka</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${dependency.testcontainers}</version> <scope>test</scope> </dependency> <!-- JUnit 5 --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>${dependency.junit5}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-suite</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.telicent.public</groupId> <artifactId>fuseki-yaml-config</artifactId> <version>${dependency.yaml-config}</version> <exclusions> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <!-- Copy OTel Agent into a specific directory under target/ so developers can configure a run configuration that utilises this --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-otel-agent</id> <goals> <goal>copy-dependencies</goal> </goals> <phase>package</phase> <configuration> <includeGroupIds>io.opentelemetry</includeGroupIds> <includeArtifactIds>opentelemetry-javaagent</includeArtifactIds> <stripVersion>true</stripVersion> <outputDirectory>${project.build.directory}/agents</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy