File tree Expand file tree Collapse file tree 2 files changed +19
-14
lines changed
Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ repositories {
240240
241241
242242dependencies {
243- runtime(group: 'synapticloop', name: 'routemaster', version: '2.1 .0', ext: 'jar')
243+ runtime(group: 'synapticloop', name: 'routemaster', version: '2.2 .0', ext: 'jar')
244244
245- compile(group: 'synapticloop', name: 'routemaster', version: '2.1 .0', ext: 'jar')
245+ compile(group: 'synapticloop', name: 'routemaster', version: '2.2 .0', ext: 'jar')
246246}
247247
248248
@@ -254,9 +254,9 @@ or, more simply for versions of gradle greater than 2.1
254254
255255
256256dependencies {
257- runtime 'synapticloop:routemaster:2.1 .0'
257+ runtime 'synapticloop:routemaster:2.2 .0'
258258
259- compile 'synapticloop:routemaster:2.1 .0'
259+ compile 'synapticloop:routemaster:2.2 .0'
260260}
261261
262262
@@ -270,7 +270,7 @@ dependencies {
270270<dependency>
271271 <groupId>synapticloop</groupId>
272272 <artifactId>routemaster</artifactId>
273- <version>2.1 .0</version>
273+ <version>2.2 .0</version>
274274 <type>jar</type>
275275</dependency>
276276
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ plugins {
1515 id " synapticloop.documentr" version " 2.9.0"
1616}
1717
18- version = ' 2.1 .0'
18+ version = ' 2.2 .0'
1919
2020group = ' synapticloop'
2121archivesBaseName = ' routemaster'
5555 " Implementation-Version" : version
5656 )
5757 }
58+ exclude(
59+ ' META-INF/INDEX.LIST' ,
60+ ' META-INF/*.SF' ,
61+ ' META-INF/*.DSA' ,
62+ ' META-INF/*.RSA' ,
63+ ' *.html' ,
64+ ' /error/*' ,
65+ ' /static/*' ,
66+ ' /templar/*' ,
67+ ' /*.templar'
68+ )
5869}
5970
6071shadowJar {
@@ -193,7 +204,7 @@ github {
193204 assets = [
194205 ' build/libs/' + archivesBaseName + ' -' + version + ' .jar' ,
195206 ' build/libs/' + archivesBaseName + ' -' + version + ' -example.jar' ,
196- ' build/libs/' + archivesBaseName + ' -' + version + ' -server.jar' ,
207+ ' build/libs/' + archivesBaseName + ' -' + version + ' -server.jar'
197208 ]
198209}
199210
@@ -215,10 +226,4 @@ bintray {
215226task example. mustRunAfter(' build' )
216227task server. mustRunAfter(' example' )
217228
218- task(dist). dependsOn(
219- [
220- ' build' ,
221- ' example' ,
222- ' server'
223- ]
224- )
229+ build. finalizedBy([' example' , ' server' ])
You can’t perform that action at this time.
0 commit comments