Skip to content

Commit 7cc7fac

Browse files
committed
OK
1 parent d6cf732 commit 7cc7fac

File tree

77 files changed

+1806
-982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1806
-982
lines changed

astra-sdk-devops/pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>astra-sdk-devops</artifactId>
7+
<name>+ astra-sdk-devops</name>
8+
9+
<parent>
10+
<artifactId>astra-sdk-parent</artifactId>
11+
<groupId>com.datastax.astra</groupId>
12+
<version>0.3.5-SNAPSHOT</version>
13+
</parent>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.apache.httpcomponents.client5</groupId>
18+
<artifactId>httpclient5</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>com.fasterxml.jackson</groupId>
22+
<artifactId>jackson-bom</artifactId>
23+
<version>${jackson.version}</version>
24+
<scope>import</scope>
25+
<type>pom</type>
26+
</dependency>
27+
<dependency>
28+
<groupId>com.fasterxml.jackson.core</groupId>
29+
<artifactId>jackson-core</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.fasterxml.jackson.core</groupId>
33+
<artifactId>jackson-annotations</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.fasterxml.jackson.core</groupId>
37+
<artifactId>jackson-databind</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.junit.jupiter</groupId>
41+
<artifactId>junit-jupiter-engine</artifactId>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.junit.platform</groupId>
46+
<artifactId>junit-platform-runner</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
</dependencies>
50+
51+
</project>

0 commit comments

Comments
 (0)