Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: release all Java modules with version 3.1.2 #114

Merged
merged 2 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
with:
fetch-depth: 0

- name: Set up JDK 20
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '20'
distribution: 'temurin'
java-version: 17
distribution: 'zulu' # Alternative distribution options are available.

- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
Expand Down Expand Up @@ -91,6 +91,6 @@ jobs:

- name: Sonar analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn sonar:sonar
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=rudderlabs_rudder-sdk-java
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 3.1.2 (August 1, 2024)
- [New](https://github.com/rudderlabs/rudder-sdk-java/pull/113) Release all Java modules with version 3.1.2

# Version 3.1.0 (December 14, 2023)
- [New](https://github.com/rudderlabs/rudder-sdk-java/pull/86) Update Java to the latest version
- [New](https://github.com/rudderlabs/rudder-sdk-java/pull/83) Improve links in Rudderstack documentation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ click [here](https://www.rudderstack.com/docs/sources/event-streams/sdks/rudders
<dependency>
<groupId>com.rudderstack.sdk.java.analytics</groupId>
<artifactId>analytics</artifactId>
<version>3.1.0</version>
<version>x.y.z</version>
</dependency>

```

*or if you're using Gradle:*

```bash
implementation 'com.rudderstack.sdk.java.analytics:analytics:3.1.0'
implementation 'com.rudderstack.sdk.java.analytics:analytics:x.y.z'
```

## Initializing ```RudderClient```
Expand Down
112 changes: 0 additions & 112 deletions analytics-cli/pom.xml

This file was deleted.

137 changes: 0 additions & 137 deletions analytics-cli/src/main/kotlin/cli/Main.kt

This file was deleted.

12 changes: 0 additions & 12 deletions analytics-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,4 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
8 changes: 0 additions & 8 deletions analytics-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
29 changes: 0 additions & 29 deletions analytics-spring-boot-starter/pom.xml

This file was deleted.

8 changes: 0 additions & 8 deletions analytics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading
Loading