Skip to content

Commit 015e6ba

Browse files
committed
[maven-release-plugin] prepare release release/0.3.2
1 parent a5be314 commit 015e6ba

File tree

16 files changed

+115
-119
lines changed

16 files changed

+115
-119
lines changed

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>za.co.absa.spline</groupId>
2323
<artifactId>spline-parent</artifactId>
2424
<relativePath>../parent/pom.xml</relativePath>
25-
<version>0.3.2-SNAPSHOT</version>
25+
<version>0.3.2</version>
2626
</parent>
2727

2828
<artifactId>spline-commons</artifactId>

core-spark-adapter-2.2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>za.co.absa.spline</groupId>
2626
<artifactId>spline-parent</artifactId>
2727
<relativePath>../parent/pom.xml</relativePath>
28-
<version>0.3.2-SNAPSHOT</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<properties>

core-spark-adapter-2.3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>za.co.absa.spline</groupId>
2626
<artifactId>spline-parent</artifactId>
2727
<relativePath>../parent/pom.xml</relativePath>
28-
<version>0.3.2-SNAPSHOT</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<properties>

core-spark-adapter-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<groupId>za.co.absa.spline</groupId>
2525
<artifactId>spline-parent</artifactId>
2626
<relativePath>../parent/pom.xml</relativePath>
27-
<version>0.3.2-SNAPSHOT</version>
27+
<version>0.3.2</version>
2828
</parent>
2929

3030
<properties>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>za.co.absa.spline</groupId>
2626
<artifactId>spline-parent</artifactId>
2727
<relativePath>../parent/pom.xml</relativePath>
28-
<version>0.3.2-SNAPSHOT</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<properties>

integration-tests/pom.xml

Lines changed: 62 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,63 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
~ Copyright 2017 ABSA Group Limited
4-
~
5-
~ Licensed under the Apache License, Version 2.0 (the "License");
6-
~ you may not use this file except in compliance with the License.
7-
~ You may obtain a copy of the License at
8-
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
10-
~
11-
~ Unless required by applicable law or agreed to in writing, software
12-
~ distributed under the License is distributed on an "AS IS" BASIS,
13-
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
~ See the License for the specific language governing permissions and
15-
~ limitations under the License.
16-
-->
17-
18-
<project xmlns="http://maven.apache.org/POM/4.0.0"
19-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21-
<modelVersion>4.0.0</modelVersion>
22-
23-
<parent>
24-
<groupId>za.co.absa.spline</groupId>
25-
<artifactId>spline-parent</artifactId>
26-
<relativePath>../parent/pom.xml</relativePath>
27-
<version>0.3.2-SNAPSHOT</version>
28-
</parent>
29-
30-
<artifactId>spline-integration-tests</artifactId>
31-
<packaging>jar</packaging>
32-
33-
<dependencies>
34-
<dependency>
35-
<groupId>za.co.absa.spline</groupId>
36-
<artifactId>spline-test-commons</artifactId>
37-
<version>${project.version}</version>
38-
</dependency>
39-
<dependency>
40-
<groupId>za.co.absa.spline</groupId>
41-
<artifactId>spline-core</artifactId>
42-
<version>${project.version}</version>
43-
</dependency>
44-
<dependency>
45-
<groupId>za.co.absa.spline</groupId>
46-
<artifactId>spline-core-spark-adapter-${spark.compat.version}</artifactId>
47-
<version>${project.version}</version>
48-
</dependency>
49-
<dependency>
50-
<groupId>za.co.absa.spline</groupId>
51-
<artifactId>spline-persistence-mongo</artifactId>
52-
<version>${project.version}</version>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.scalatest</groupId>
56-
<artifactId>scalatest_${scala.compat.version}</artifactId>
57-
</dependency>
58-
<dependency>
59-
<groupId>org.mockito</groupId>
60-
<artifactId>mockito-core</artifactId>
61-
</dependency>
62-
63-
</dependencies>
64-
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2017 ABSA Group Limited
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<modelVersion>4.0.0</modelVersion>
20+
21+
<parent>
22+
<groupId>za.co.absa.spline</groupId>
23+
<artifactId>spline-parent</artifactId>
24+
<relativePath>../parent/pom.xml</relativePath>
25+
<version>0.3.2</version>
26+
</parent>
27+
28+
<artifactId>spline-integration-tests</artifactId>
29+
<packaging>jar</packaging>
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>za.co.absa.spline</groupId>
34+
<artifactId>spline-test-commons</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>za.co.absa.spline</groupId>
39+
<artifactId>spline-core</artifactId>
40+
<version>${project.version}</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>za.co.absa.spline</groupId>
44+
<artifactId>spline-core-spark-adapter-${spark.compat.version}</artifactId>
45+
<version>${project.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>za.co.absa.spline</groupId>
49+
<artifactId>spline-persistence-mongo</artifactId>
50+
<version>${project.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.scalatest</groupId>
54+
<artifactId>scalatest_${scala.compat.version}</artifactId>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.mockito</groupId>
58+
<artifactId>mockito-core</artifactId>
59+
</dependency>
60+
61+
</dependencies>
62+
6563
</project>

model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>za.co.absa.spline</groupId>
2323
<artifactId>spline-parent</artifactId>
2424
<relativePath>../parent/pom.xml</relativePath>
25-
<version>0.3.2-SNAPSHOT</version>
25+
<version>0.3.2</version>
2626
</parent>
2727

2828
<artifactId>spline-model</artifactId>

parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>za.co.absa.spline</groupId>
2222
<artifactId>spline-parent</artifactId>
23-
<version>0.3.2-SNAPSHOT</version>
23+
<version>0.3.2</version>
2424

2525
<packaging>pom</packaging>
2626

@@ -34,7 +34,7 @@
3434
<connection>scm:git:git://github.com/AbsaOSS/spline.git</connection>
3535
<developerConnection>scm:git:ssh://github.com:AbsaOSS/spline.git</developerConnection>
3636
<url>http://github.com/AbsaOSS/spline/tree/master</url>
37-
<tag>HEAD</tag>
37+
<tag>release/0.3.2</tag>
3838
</scm>
3939

4040
<licenses>

persistence/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>za.co.absa.spline</groupId>
2323
<artifactId>spline-parent</artifactId>
2424
<relativePath>../../parent/pom.xml</relativePath>
25-
<version>0.3.2-SNAPSHOT</version>
25+
<version>0.3.2</version>
2626
</parent>
2727

2828
<artifactId>spline-persistence-api</artifactId>

persistence/hdfs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>za.co.absa.spline</groupId>
2323
<artifactId>spline-parent</artifactId>
2424
<relativePath>../../parent/pom.xml</relativePath>
25-
<version>0.3.2-SNAPSHOT</version>
25+
<version>0.3.2</version>
2626
</parent>
2727

2828
<artifactId>spline-persistence-hdfs</artifactId>

0 commit comments

Comments
 (0)