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

Commit 14d9212

Browse files
committed
release 2.3.2
1 parent ceec14c commit 14d9212

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# __2.3.2 SNAPSHOT__
1+
# __2.3.2 (24-jun-2019)__
2+
- updated maven archetypes
23
- fixed `mvn-golang:vet does not have maven dependency resolution` [#59](https://github.com/raydac/mvn-golang/issues/59)
34
- default version of GoSDK updated to 1.12.6
45

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
22
[![Java 7.0+](https://img.shields.io/badge/java-7.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
3-
[![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.1|jar)
3+
[![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.2|jar)
44
[![Maven 3.0.3+](https://img.shields.io/badge/maven-3.0.3%2b-green.svg)](https://maven.apache.org/)
55
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-red.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
66
[![Yandex.Money donation](https://img.shields.io/badge/donation-Я.деньги-yellow.svg)](http://yasobe.ru/na/iamoss)
77

88
![mvn-golang](https://raw.githubusercontent.com/raydac/mvn-golang/master/assets/mvngolang.png)
99

1010
# Changelog
11-
__2.3.2 SNAPSHOT__
11+
__2.3.2 (24-jun-2019)__
12+
- updated maven archetypes
1213
- fixed `mvn-golang:vet does not have maven dependency resolution` [#59](https://github.com/raydac/mvn-golang/issues/59)
1314
- default version of GoSDK updated to 1.12.6
1415

@@ -36,15 +37,15 @@ __2.2.0 (13-may-2018)__
3637
# GO start!
3738
__Taste Go in just two commands!__
3839
```
39-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.1 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
40+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.2 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
4041
mvn -f ./gohello/pom.xml package
4142
```
4243
The First command in th snippet above generates a maven project with some test files and the second command builds the project.
4344
[Also you can take a look at the example `Hello world` project using the plugin](https://github.com/raydac/mvn-golang-example)
4445

4546
If you want to generate a multi-module project, then you can use such snippet
4647
```
47-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.1 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
48+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.2 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
4849
```
4950

5051
# Introduction
@@ -84,7 +85,7 @@ Below described build section for simple golang project which keeps source in `s
8485
<plugin>
8586
<groupId>com.igormaznitsa</groupId>
8687
<artifactId>mvn-golang-wrapper</artifactId>
87-
<version>2.3.1</version>
88+
<version>2.3.2</version>
8889
<extensions>true</extensions>
8990
<executions>
9091
<execution>

mvn-golang-examples/mvn-golang-example-preprocessing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<plugin>
8484
<groupId>com.igormaznitsa</groupId>
8585
<artifactId>jcp</artifactId>
86-
<version>7.0.0</version>
86+
<version>7.0.1</version>
8787
<executions>
8888
<execution>
8989
<id>preprocessGoSources</id>

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.2-SNAPSHOT</version>
8+
<version>2.3.2</version>
99
</parent>
1010

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

mvn-golang-wrapper/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.2-SNAPSHOT</version>
8+
<version>2.3.2</version>
99
</parent>
1010

1111
<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.2-SNAPSHOT</version>
6+
<version>2.3.2</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.2-SNAPSHOT</main-project-version>
16+
<main-project-version>2.3.2</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)