Skip to content

Commit

Permalink
Fixed the dependency version issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
harshaghanta committed Jan 3, 2025
1 parent 4b2cb26 commit 2dc6086
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 26 deletions.
6 changes: 3 additions & 3 deletions src/Services/Ordering/orderapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>com.eshoponcontainers</groupId>
<artifactId>integration-eventlog</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand All @@ -54,13 +54,13 @@
<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus-rabbitmq</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/Services/Payment/paymentapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus-rabbitmq</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
39 changes: 20 additions & 19 deletions src/Services/Webhooks/webhooks-api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?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"
<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>
<parent>
Expand Down Expand Up @@ -73,7 +74,7 @@
<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus-rabbitmq</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>

Expand All @@ -92,26 +93,26 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-opentelemetry-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>opentelemetry-javaagent</includeArtifactIds>
<outputDirectory>${project.build.directory}</outputDirectory>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-opentelemetry-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>opentelemetry-javaagent</includeArtifactIds>
<outputDirectory>${project.build.directory}</outputDirectory>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<finalName>webhooks-api</finalName>
</build>


</project>
</project>
6 changes: 3 additions & 3 deletions src/Services/catalogapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@
<dependency>
<groupId>com.eshoponcontainers</groupId>
<artifactId>integration-eventlog</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus-rabbitmq</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>com.eshoponcontainers.eventbus</groupId>
<artifactId>eventbus</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
</dependency>


Expand Down

0 comments on commit 2dc6086

Please sign in to comment.