Build: Update external javadoc links

Add description to gradle update tasks
Add note about jetty versions
This commit is contained in:
zzz
2021-01-04 11:51:24 -05:00
parent ed0ecdf253
commit 619923dbf8
3 changed files with 13 additions and 6 deletions

View File

@@ -84,6 +84,7 @@ task prepUpdate(type: Copy) {
}
task updaterRouter(type: Zip) {
description 'makes an i2pupdate.zip file containing core and router jars only'
dependsOn prepUpdateRouter
archiveName 'i2pupdate.zip'
destinationDir file('.')
@@ -91,6 +92,7 @@ task updaterRouter(type: Zip) {
}
task updaterSmall(type: Zip) {
description 'makes an i2pupdate.zip file with a subset of the resources'
dependsOn prepUpdateSmall
archiveName 'i2pupdate.zip'
destinationDir file('.')
@@ -98,6 +100,7 @@ task updaterSmall(type: Zip) {
}
task updater(type: Zip) {
description 'makes an i2pupdate.zip file'
dependsOn prepUpdate
archiveName 'i2pupdate.zip'
destinationDir file('.')