Skip to content

Commit 3377389

Browse files
committed
commit
1 parent 770fdc6 commit 3377389

File tree

9 files changed

+76
-9
lines changed

9 files changed

+76
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/** Sub Clients relative to Astra Streaming Service. */
1+
/** Sub Clients relative to Astra Streaming Service and Providers for Pulsar admin and client. */
22
package com.dtsx.astra.sdk.streaming;

astra-sdk-pulsar/src/main/java/com/dtsx/astra/sdk/streaming/package-info.java

Lines changed: 0 additions & 2 deletions
This file was deleted.

astra-sdk-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.datastax.astra</groupId>
1111
<artifactId>astra-sdk-parent</artifactId>
12-
<version>0.6.1-SNAPSHOT</version>
12+
<version>0.6.1</version>
1313
</parent>
1414

1515
<modules>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.datastax.astra</groupId>
5+
<artifactId>astra-sdk-samples</artifactId>
6+
<name>+ astra-sdk-samples</name>
7+
<packaging>pom</packaging>
8+
9+
<parent>
10+
<groupId>com.datastax.astra</groupId>
11+
<artifactId>astra-sdk-parent</artifactId>
12+
<version>0.6.1-SNAPSHOT</version>
13+
</parent>
14+
15+
<modules>
16+
<module>sample-quickstart</module>
17+
<module>sample-spring-boot-2x</module>
18+
<module>sample-spring-boot-3x</module>
19+
</modules>
20+
21+
</project>

astra-sdk-samples/sample-quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>com.datastax.astra</groupId>
1414
<artifactId>astra-sdk</artifactId>
15-
<version>0.6.1-SNAPSHOT</version>
15+
<version>0.6.1</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.junit.jupiter</groupId>
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
<groupId>com.datastax.astra</groupId>
7+
<artifactId>sample-quickstart</artifactId>
8+
<name>+ samples::quickstart</name>
9+
<version>0.6.1-SNAPSHOT</version>
10+
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.datastax.astra</groupId>
14+
<artifactId>astra-sdk</artifactId>
15+
<version>0.6.1-SNAPSHOT</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.junit.jupiter</groupId>
19+
<artifactId>junit-jupiter-engine</artifactId>
20+
<version>5.9.3</version>
21+
<scope>test</scope>
22+
</dependency>
23+
</dependencies>
24+
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-compiler-plugin</artifactId>
30+
<version>3.11.0</version>
31+
<configuration>
32+
<source>17</source>
33+
<target>17</target>
34+
<showWarnings>false</showWarnings>
35+
</configuration>
36+
</plugin>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-resources-plugin</artifactId>
40+
<version>3.3.1</version>
41+
<configuration>
42+
<escapeString>\</escapeString>
43+
<encoding>UTF-8</encoding>
44+
</configuration>
45+
</plugin>
46+
</plugins>
47+
48+
</build>
49+
50+
</project>

astra-spring-boot-autoconfigure/src/main/java/com/datastax/astra/boot/package-info.java

Lines changed: 0 additions & 2 deletions
This file was deleted.

astra-spring-boot-autoconfigure/src/main/java/com/datastax/astra/boot/utils/package-info.java

Lines changed: 0 additions & 2 deletions
This file was deleted.

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
<module>astra-spring-boot-starter</module>
6565
<module>astra-spring-boot-3x-autoconfigure</module>
6666
<module>astra-spring-boot-3x-starter</module>
67+
<!--
6768
<module>astra-sdk-samples</module>
69+
-->
6870
</modules>
6971

7072
<dependencyManagement>

0 commit comments

Comments
 (0)