Skip to content
This repository was archived by the owner on Mar 3, 2025. It is now read-only.

Commit 5974b4d

Browse files
committed
release 2.3.10
1 parent 04e24f9 commit 5974b4d

File tree

9 files changed

+19
-17
lines changed

9 files changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# __2.3.10 (SNAPSHOT)__
1+
# __2.3.10 (08-jun-2022)__
22

3+
- updated dependencies
34
- default GoSDK version is 1.18.3
45

5-
# __2.3.9 (04-jl-2021)__
6+
# __2.3.9 (04-jul-2021)__
67

78
- fix for clean fail for multi-module project if some artifacts
89
unresolvable [#90](https://github.com/raydac/mvn-golang/issues/90)

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
44
[![Java 8.0+](https://img.shields.io/badge/java-8.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
5-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/mvn-golang-wrapper/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|mvn-golang-wrapper|2.3.9|jar)
5+
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/mvn-golang-wrapper/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|mvn-golang-wrapper|2.3.10|jar)
66
[![Maven 3.0.3+](https://img.shields.io/badge/maven-3.0.3%2b-green.svg)](https://maven.apache.org/)
77
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-cyan.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
88
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)
99

1010
# Changelog
1111

12-
__2.3.10 (SNAPSHOT)__
12+
__2.3.10 (08-jun-2022)__
1313

14+
- updated dependencies
1415
- default GoSDK version is 1.18.3
1516

1617
__2.3.9 (04-jul-2021)__
@@ -27,15 +28,15 @@ __2.3.9 (04-jul-2021)__
2728
# GO start!
2829
__Taste Go in just two commands!__
2930
```
30-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.9 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
31+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.10 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
3132
mvn -f ./gohello/pom.xml package
3233
```
3334
The First command in th snippet above generates a maven project with some test files and the second command builds the project.
3435
[Also you can take a look at the example `Hello world` project using the plugin](https://github.com/raydac/mvn-golang-example)
3536

3637
If you want to generate a multi-module project, then you can use such snippet
3738
```
38-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.9 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
39+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.10 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
3940
```
4041

4142
# Introduction
@@ -75,7 +76,7 @@ Below described build section for simple golang project which keeps source in `s
7576
<plugin>
7677
<groupId>com.igormaznitsa</groupId>
7778
<artifactId>mvn-golang-wrapper</artifactId>
78-
<version>2.3.9</version>
79+
<version>2.3.10</version>
7980
<extensions>true</extensions>
8081
<executions>
8182
<execution>

mvn-golang-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>mvn-golang</artifactId>
8-
<version>2.3.10-SNAPSHOT</version>
8+
<version>2.3.10</version>
99
</parent>
1010

1111
<artifactId>mvn-golang-examples</artifactId>

mvn-golang-hello-multi/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>mvn-golang</artifactId>
9-
<version>2.3.10-SNAPSHOT</version>
9+
<version>2.3.10</version>
1010
</parent>
1111

1212
<groupId>com.igormaznitsa</groupId>
1313
<artifactId>mvn-golang-hello-multi</artifactId>
1414
<packaging>jar</packaging>
1515

16-
<name>Maven GoLang Multimodule archetype</name>
17-
<description>Archetype generates a sample multimodule mvn-golang project</description>
16+
<name>Maven GoLang Multi-module archetype</name>
17+
<description>Archetype generates a sample multi-module mvn-golang project</description>
1818

1919
<profiles>
2020
<profile>

mvn-golang-hello-multi/src/main/resources/META-INF/maven/archetype-metadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<defaultValue>main</defaultValue>
1111
</requiredProperty>
1212
<requiredProperty key="gowrapper">
13-
<defaultValue>2.3.10-SNAPSHOT</defaultValue>
13+
<defaultValue>2.3.10</defaultValue>
1414
</requiredProperty>
1515
<requiredProperty key="gosdk">
1616
<defaultValue>1.18.3</defaultValue>

mvn-golang-hello/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>mvn-golang</artifactId>
9-
<version>2.3.10-SNAPSHOT</version>
9+
<version>2.3.10</version>
1010
</parent>
1111

1212
<groupId>com.igormaznitsa</groupId>

mvn-golang-hello/src/main/resources/META-INF/maven/archetype-metadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<defaultValue>main</defaultValue>
1111
</requiredProperty>
1212
<requiredProperty key="gowrapper">
13-
<defaultValue>2.3.10-SNAPSHOT</defaultValue>
13+
<defaultValue>2.3.10</defaultValue>
1414
</requiredProperty>
1515
<requiredProperty key="gosdk">
1616
<defaultValue>1.18.3</defaultValue>

mvn-golang-wrapper/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>mvn-golang</artifactId>
9-
<version>2.3.10-SNAPSHOT</version>
9+
<version>2.3.10</version>
1010
</parent>
1111

1212
<artifactId>mvn-golang-wrapper</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.igormaznitsa</groupId>
55
<artifactId>mvn-golang</artifactId>
6-
<version>2.3.10-SNAPSHOT</version>
6+
<version>2.3.10</version>
77
<packaging>pom</packaging>
88

99
<name>mvn-golang</name>
@@ -13,7 +13,7 @@
1313
<inceptionYear>2016</inceptionYear>
1414

1515
<properties>
16-
<main-project-version>2.3.10-SNAPSHOT</main-project-version>
16+
<main-project-version>2.3.10</main-project-version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
1919
<meta.version>1.1.3</meta.version>

0 commit comments

Comments
 (0)