Skip to content

Commit e1802cb

Browse files
author
advinst
committed
Updated READMDE and project files.
1 parent 4e05059 commit e1802cb

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,16 @@ Requirements
77
1. To use this plugin an installed version of Advanced Installer is required.
88
You can obtain it from: http://www.advancedinstaller.com/download.html
99

10-
2. JRE/JDK 1.7 or higher.
10+
2. JRE/JDK 1.7 or higher.
11+
12+
Installation
13+
---------------------
14+
15+
Please copy the plugin (i.e. JAR file) into the ../<Bamboo-home>/plugins/ directory.
16+
17+
Binaries
18+
-----------------------
19+
20+
The official releases can be downloaded from:
21+
22+
https://github.com/advinst/advinst-bamboo-plugin/releases

pom.xml

+27
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
<bamboo.data.version>5.9.2</bamboo.data.version>
5252
<amps.version>5.0.13</amps.version>
5353
<plugin.testrunner.version>1.2.3</plugin.testrunner.version>
54+
<plugin.version>${project.version}</plugin.version>
55+
<release.version>${project.version}</release.version>
56+
<release.tag>v${project.version}</release.tag>
57+
<release.notes>Please see the CHANGELOG.md file for list of changes.</release.notes>
5458
</properties>
5559

5660
<dependencies>
@@ -108,6 +112,29 @@
108112
<target>1.6</target>
109113
</configuration>
110114
</plugin>
115+
116+
<plugin>
117+
<groupId>de.jutzig</groupId>
118+
<artifactId>github-release-plugin</artifactId>
119+
<version>1.1.1</version>
120+
<executions>
121+
<execution>
122+
<id>github-upload</id>
123+
<phase>deploy</phase>
124+
<goals>
125+
<goal>release</goal>
126+
</goals>
127+
<inherited>false</inherited>
128+
<configuration>
129+
<releaseName>Release ${release.version}</releaseName>
130+
<description>${release.notes}</description>
131+
<tag>${release.tag}</tag>
132+
<artifact>${project.build.directory}/${project.artifactId}-${release.version}.jar</artifact>
133+
</configuration>
134+
</execution>
135+
</executions>
136+
</plugin>
137+
111138
</plugins>
112139
</build>
113140
</project>

0 commit comments

Comments
 (0)