Skip to content

Commit

Permalink
Fix for spring application
Browse files Browse the repository at this point in the history
  • Loading branch information
mukesh-ctds committed Oct 17, 2024
1 parent 98ed559 commit 3c2c5db
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
14 changes: 12 additions & 2 deletions examples/spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<!-- DataStax Apache Pulsar JMS Client -->
<groupId>com.datastax.oss</groupId>
<artifactId>pulsar-jms</artifactId>
<artifactId>pulsar-jms-all</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand All @@ -65,13 +65,23 @@
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.4.5</version>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
6 changes: 3 additions & 3 deletions pulsar-jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
<!-- this dependency is required by the Pulsar client implementation, it contains javax.annotation.Priority
Pulsar client uses some old Glassfish Jersey implementation -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>${pulsar.groupId}</groupId>
Expand Down
6 changes: 3 additions & 3 deletions resource-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
<!-- this dependency is required by the Pulsar client implementation, it contains javax.annotation.Priority
Pulsar client uses some old Glassfish Jersey implementation -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down

0 comments on commit 3c2c5db

Please sign in to comment.