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

Commit eebfc41

Browse files
committed
release 2.3.7
1 parent e24abcf commit eebfc41

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
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.6|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.7|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.7 (SNAPSHOT)__
12+
__2.3.7 (22-feb-2021)__
1313

1414
- refactoring, improved informing about file log state [#83](https://github.com/raydac/mvn-golang/issues/83)
1515
- improved `build` mojo, added support to attach build result as project
@@ -35,15 +35,15 @@ __2.3.5 (12-sep-2020)__
3535
# GO start!
3636
__Taste Go in just two commands!__
3737
```
38-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.6 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
38+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello -DarchetypeVersion=2.3.7 -DgroupId=com.go.test -DartifactId=gohello -Dversion=1.0-SNAPSHOT
3939
mvn -f ./gohello/pom.xml package
4040
```
4141
The First command in th snippet above generates a maven project with some test files and the second command builds the project.
4242
[Also you can take a look at the example `Hello world` project using the plugin](https://github.com/raydac/mvn-golang-example)
4343

4444
If you want to generate a multi-module project, then you can use such snippet
4545
```
46-
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.6 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
46+
mvn archetype:generate -B -DarchetypeGroupId=com.igormaznitsa -DarchetypeArtifactId=mvn-golang-hello-multi -DarchetypeVersion=2.3.7 -DgroupId=com.go.test -DartifactId=gohello-multi -Dversion=1.0-SNAPSHOT
4747
```
4848

4949
# Introduction
@@ -83,7 +83,7 @@ Below described build section for simple golang project which keeps source in `s
8383
<plugin>
8484
<groupId>com.igormaznitsa</groupId>
8585
<artifactId>mvn-golang-wrapper</artifactId>
86-
<version>2.3.6</version>
86+
<version>2.3.7</version>
8787
<extensions>true</extensions>
8888
<executions>
8989
<execution>

assets/doc_common.png

130 KB
Loading

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

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

mvn-golang-hello-multi/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.7-SNAPSHOT</version>
9+
<version>2.3.7</version>
1010
</parent>
1111

1212
<groupId>com.igormaznitsa</groupId>

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.7-SNAPSHOT</defaultValue>
13+
<defaultValue>2.3.7</defaultValue>
1414
</requiredProperty>
1515
<requiredProperty key="gosdk">
1616
<defaultValue>1.15.8</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.7-SNAPSHOT</version>
9+
<version>2.3.7</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.7-SNAPSHOT</defaultValue>
13+
<defaultValue>2.3.7</defaultValue>
1414
</requiredProperty>
1515
<requiredProperty key="gosdk">
1616
<defaultValue>1.15.8</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.7-SNAPSHOT</version>
9+
<version>2.3.7</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.7-SNAPSHOT</version>
6+
<version>2.3.7</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.7-SNAPSHOT</main-project-version>
16+
<main-project-version>2.3.7</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)