Skip to content

Commit

Permalink
release 2.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Jun 7, 2022
1 parent 04e24f9 commit 5974b4d
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 17 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# __2.3.10 (SNAPSHOT)__
# __2.3.10 (08-jun-2022)__

- updated dependencies
- default GoSDK version is 1.18.3

# __2.3.9 (04-jl-2021)__
# __2.3.9 (04-jul-2021)__

- fix for clean fail for multi-module project if some artifacts
unresolvable [#90](https://github.com/raydac/mvn-golang/issues/90)
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![Java 8.0+](https://img.shields.io/badge/java-8.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![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)
[![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)
[![Maven 3.0.3+](https://img.shields.io/badge/maven-3.0.3%2b-green.svg)](https://maven.apache.org/)
[![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)
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)

# Changelog

__2.3.10 (SNAPSHOT)__
__2.3.10 (08-jun-2022)__

- updated dependencies
- default GoSDK version is 1.18.3

__2.3.9 (04-jul-2021)__
Expand All @@ -27,15 +28,15 @@ __2.3.9 (04-jul-2021)__
# GO start!
__Taste Go in just two commands!__
```
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
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
mvn -f ./gohello/pom.xml package
```
The First command in th snippet above generates a maven project with some test files and the second command builds the project.
[Also you can take a look at the example `Hello world` project using the plugin](https://github.com/raydac/mvn-golang-example)

If you want to generate a multi-module project, then you can use such snippet
```
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
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
```

# Introduction
Expand Down Expand Up @@ -75,7 +76,7 @@ Below described build section for simple golang project which keeps source in `s
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang-wrapper</artifactId>
<version>2.3.9</version>
<version>2.3.10</version>
<extensions>true</extensions>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion mvn-golang-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang</artifactId>
<version>2.3.10-SNAPSHOT</version>
<version>2.3.10</version>
</parent>

<artifactId>mvn-golang-examples</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions mvn-golang-hello-multi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang</artifactId>
<version>2.3.10-SNAPSHOT</version>
<version>2.3.10</version>
</parent>

<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang-hello-multi</artifactId>
<packaging>jar</packaging>

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

<profiles>
<profile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<defaultValue>main</defaultValue>
</requiredProperty>
<requiredProperty key="gowrapper">
<defaultValue>2.3.10-SNAPSHOT</defaultValue>
<defaultValue>2.3.10</defaultValue>
</requiredProperty>
<requiredProperty key="gosdk">
<defaultValue>1.18.3</defaultValue>
Expand Down
2 changes: 1 addition & 1 deletion mvn-golang-hello/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang</artifactId>
<version>2.3.10-SNAPSHOT</version>
<version>2.3.10</version>
</parent>

<groupId>com.igormaznitsa</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<defaultValue>main</defaultValue>
</requiredProperty>
<requiredProperty key="gowrapper">
<defaultValue>2.3.10-SNAPSHOT</defaultValue>
<defaultValue>2.3.10</defaultValue>
</requiredProperty>
<requiredProperty key="gosdk">
<defaultValue>1.18.3</defaultValue>
Expand Down
2 changes: 1 addition & 1 deletion mvn-golang-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang</artifactId>
<version>2.3.10-SNAPSHOT</version>
<version>2.3.10</version>
</parent>

<artifactId>mvn-golang-wrapper</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang</artifactId>
<version>2.3.10-SNAPSHOT</version>
<version>2.3.10</version>
<packaging>pom</packaging>

<name>mvn-golang</name>
Expand All @@ -13,7 +13,7 @@
<inceptionYear>2016</inceptionYear>

<properties>
<main-project-version>2.3.10-SNAPSHOT</main-project-version>
<main-project-version>2.3.10</main-project-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
<meta.version>1.1.3</meta.version>
Expand Down

0 comments on commit 5974b4d

Please # to comment.