Skip to content

Commit d3ade11

Browse files
Merge branch 'main' into feature/exception_handler_refactor
2 parents 9f38c0a + c4efdc7 commit d3ade11

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y openssh-server vim python3 --no-install
1818
service ssh start
1919

2020
# Copy CDM jar & template files
21-
ARG MAVEN_VERSION=3.8.7
21+
ARG MAVEN_VERSION=3.9.2
2222
ARG USER_HOME_DIR="/root"
2323
ARG BASE_URL=https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries
2424
ENV MAVEN_HOME /usr/share/maven

RELEASE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## [4.0.1] - 2023-06-08
4+
- Fixes broken maven link in docker build process
5+
- Upgrades to latest stable Maven 3.x
6+
37
## [4.0.0] - 2023-06-02
48
This release is a major code refactor of Cassandra Data Migrator, focused on internal code structure and organization.
59
Automated testing (both unit and integration) was introduced and incorporated into the build process. It includes all

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33

44
<groupId>datastax.cdm</groupId>
55
<artifactId>cassandra-data-migrator</artifactId>
6-
<version>${revision}</version>
6+
<version>4.0.2-SNAPSHOT</version>
77
<packaging>jar</packaging>
88

99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<revision>4.0.0-SNAPSHOT</revision>
1211
<scala.version>2.12.17</scala.version>
1312
<scala.main.version>2.12</scala.main.version>
1413
<spark.version>3.3.1</spark.version>
@@ -24,9 +23,6 @@
2423
<id>github</id>
2524
<name>GitHub Packages</name>
2625
<url>https://maven.pkg.github.com/datastax/cassandra-data-migrator</url>
27-
<snapshots>
28-
<enabled>false</enabled>
29-
</snapshots>
3026
</repository>
3127
</distributionManagement>
3228

@@ -132,6 +128,13 @@
132128
<scope>test</scope>
133129
</dependency>
134130
</dependencies>
131+
132+
<scm>
133+
<connection>scm:git:[email protected]:datastax/cassandra-data-migrator.git</connection>
134+
<developerConnection>scm:git:[email protected]:datastax/cassandra-data-migrator.git</developerConnection>
135+
<url>https://github.com/datastax/cassandra-data-migrator</url>
136+
<tag>@{project.version}</tag>
137+
</scm>
135138

136139
<build>
137140
<resources>

0 commit comments

Comments
 (0)