Skip to content

Commit

Permalink
Updating dependencies based on mvn dependency:analyze
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
robwtelicent committed Dec 17, 2024
1 parent 14f2cb7 commit 735a391
Show file tree
Hide file tree
Showing 14 changed files with 682 additions and 89 deletions.
56 changes: 55 additions & 1 deletion cli/cli-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,49 @@
<artifactId>logback-classic</artifactId>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>event-sources-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>jaxrs-base-server</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>projectors-core</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
Expand All @@ -81,10 +124,21 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>kafka</artifactId>
<version>${dependency.testcontainers}</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
108 changes: 93 additions & 15 deletions cli/cli-debug/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,68 @@
</dependency>

<dependency>
<groupId>io.opentelemetry.javaagent</groupId>
<artifactId>opentelemetry-javaagent</artifactId>
<scope>runtime</scope>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>event-sources-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.github.rvesse</groupId>
<artifactId>airline</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>jaxrs-base-server</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-rdfpatch</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>event-source-kafka</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>projectors-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>live-reporter</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
</dependency>

<!-- Test Dependencies -->
Expand Down Expand Up @@ -52,32 +111,51 @@
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>kafka</artifactId>
<version>${dependency.testcontainers}</version>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>event-source-kafka</artifactId>
<artifactId>event-source-file</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>projector-driver</artifactId>
<version>${project.version}</version>
<classifier>certs-helper</classifier>
<scope>test</scope>
<type>zip</type>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>kafka</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</exclusion>
</exclusions>
</dependency>

</dependencies>

<build>
Expand Down
33 changes: 33 additions & 0 deletions cli/cli-probe-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,38 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
</dependency>

<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<scope>runtime</scope>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>io.telicent.smart-caches</groupId>
Expand All @@ -43,6 +75,7 @@
<artifactId>slf4j-test</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down
10 changes: 0 additions & 10 deletions configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,13 @@
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
55 changes: 51 additions & 4 deletions event-sources/event-source-file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,47 @@
<version>${dependency.jackson}</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>io.telicent.smart-caches</groupId>
<artifactId>event-sources-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-base</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.testng</groupId>
Expand All @@ -46,14 +87,20 @@
</dependency>

<dependency>
<groupId>com.github.valfirst</groupId>
<artifactId>slf4j-test</artifactId>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<scope>test</scope>
</dependency>

Expand Down
Loading

0 comments on commit 735a391

Please sign in to comment.