Commit e1802cb advinst
committed
1 parent 4e05059 commit e1802cb Copy full SHA for e1802cb
File tree 2 files changed +40
-1
lines changed
2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,16 @@ Requirements
7
7
1 . To use this plugin an installed version of Advanced Installer is required.
8
8
You can obtain it from: http://www.advancedinstaller.com/download.html
9
9
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
Original file line number Diff line number Diff line change 51
51
<bamboo .data.version>5.9.2</bamboo .data.version>
52
52
<amps .version>5.0.13</amps .version>
53
53
<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>
54
58
</properties >
55
59
56
60
<dependencies >
108
112
<target >1.6</target >
109
113
</configuration >
110
114
</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
+
111
138
</plugins >
112
139
</build >
113
140
</project >
You can’t perform that action at this time.
0 commit comments