Skip to content

Commit c4666f4

Browse files
committed
Merge tag 'v1.0.3'
[maven-release-plugin] copy for tag v1.0.3
2 parents 0e1f0ca + bfb0d57 commit c4666f4

File tree

9 files changed

+23
-14
lines changed

9 files changed

+23
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Simply add `buildversion-plugin` to your pom, executing the `set-properties` goa
2323
<plugin>
2424
<groupId>com.code54.mojo</groupId>
2525
<artifactId>buildversion-plugin</artifactId>
26-
<version>1.0.2</version>
26+
<version>1.0.3</version>
2727
<executions>
2828
<execution>
2929
<goals><goal>set-properties</goal></goals>
@@ -100,7 +100,7 @@ Example:
100100
<plugin>
101101
<groupId>com.code54.mojo</groupId>
102102
<artifactId>buildversion-plugin</artifactId>
103-
<version>1.0.2</version>
103+
<version>1.0.3</version>
104104
<executions>
105105
<execution>
106106
<goals><goal>set-properties</goal></goals>

ReleaseNotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes - buildversion-plugin
22

3+
## v1.0.3
4+
5+
* [issue #6] Update conch dependency version. Hopefully breaking dependency on clojars.org repo at runtime
6+
37
## v1.0.2
48

59
* [issue #4] Ignore newline from git --format's output

finish-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ version=$1
1111

1212
echo "finish release of $version"
1313

14-
echo -n "Peform release. enter to continue:" && read x \
14+
echo -n "Perform release. enter to continue:" && read x \
1515
&& mvn release:clean \
1616
&& mvn release:prepare -Dgpg.keyname=02FCB552 \
17-
&& git checkout develop; git merge "release-${version}" \
18-
&& git checkout master; git merge "v${version}" \
1917
&& mvn release:perform -Dgpg.keyname=02FCB552 \
2018
&& mvn nexus:staging-close \
21-
&& mvn nexus:staging-promote
19+
&& mvn nexus:staging-release \
20+
&& git checkout develop; git merge "release-${version}" \
21+
&& git checkout master; git merge "v${version}" \
2222

2323

2424
#&& git flow release finish -n $version

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.code54.mojo</groupId>
1313
<artifactId>buildversion-plugin</artifactId>
14-
<version>1.0.2</version>
14+
<version>1.0.3</version>
1515
<packaging>maven-plugin</packaging>
1616

1717
<name>buildversion-plugin</name>
@@ -35,7 +35,7 @@
3535
<connection>scm:git:git://github.com/code54/buildversion-plugin.git</connection>
3636
<developerConnection>scm:git:ssh://[email protected]:code54/buildversion-plugin.git</developerConnection>
3737
<url>https://github.com/code54/buildversion-plugin</url>
38-
<tag>v1.0.2</tag>
38+
<tag>v1.0.3</tag>
3939
</scm>
4040

4141
<properties>
@@ -237,9 +237,9 @@
237237
</dependency>
238238

239239
<dependency>
240-
<groupId>conch</groupId>
240+
<groupId>me.raynes</groupId>
241241
<artifactId>conch</artifactId>
242-
<version>0.2.1</version>
242+
<version>0.3.1</version>
243243
</dependency>
244244
</dependencies>
245245

publish-snapshot.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
git checkout develop
2+
mvn clean deploy
3+

src/it/custom-properties/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.1-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

src/it/setting-git-cmd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.1-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

src/it/simple-project/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.1-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

start-release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ echo "Changes since $previous_version"
2525
git log --oneline v$previous_version..
2626
echo ""
2727
echo ""
28-
echo "Press [enter] to edit ReleaseNotes and README..."
28+
echo "Press [enter] to edit ReleaseNotes and README and other files refering to version number..."
2929
read
3030

3131

3232
$EDITOR ReleaseNotes.md
3333
$EDITOR README.md
34+
$EDITOR src/it/setting-git-cmd/pom.xml src/it/custom-properties/pom.xml src/it/simple-project/pom.xml
35+

0 commit comments

Comments
 (0)