Skip to content

Commit

Permalink
fix: bump dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Omar Al Bastami <omar.albastami@ibm.com>
  • Loading branch information
Omar Al Bastami authored and omar-albastami committed Sep 4, 2024
1 parent 9576385 commit ac1e39b
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions service-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<!-- >>> Replace this with the parent pom's artifactId -->
<artifactId>PARENT-ARTIFACTID</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>99-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

<!-- >>> Replace this with the service module's artifactId (e.g. "example-service") -->
<artifactId>MODULE-ARTIFACTID</artifactId>

<!-- >>> Replace this with a text description of this module (e.g. "Example Service") -->
<name>MODULE-DESCRIPTION</name>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>sdk-core</artifactId>
</dependency>
<dependency>
<!-- >>> Replace this with the "common" module's artifactId (e.g. my-services-common) -->
<artifactId>COMMON-ARTIFACTID</artifactId>
<groupId>${project.groupId}</groupId>
</dependency>
<dependency>
<artifactId>COMMON-ARTIFACTID</artifactId>
<groupId>${project.groupId}</groupId>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<developers>
<developer>
<name>IBM Cloud DevX SDK Development</name>
<email>devxsdk@us.ibm.com</email>
<url>https://www.ibm.com/</url>
</developer>
</developers>

</project>

0 comments on commit ac1e39b

Please sign in to comment.