Changeset 31426 in osm for applications
- Timestamp:
- 2015-08-01T00:44:59+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/build.gradle
r31421 r31426 18 18 url "https://repository.apache.org/content/repositories/snapshots/" 19 19 } 20 // for scribe-java21 maven {22 url "https://raw.github.com/fernandezpablo85/scribe-java/mvn-repo/"23 }24 20 //for josm-(latest|tested).jar 25 21 ivy { … … 31 27 } 32 28 dependencies { 33 // The JOSM-version can be specified as "latest", "tested" or "snapshot-1234" (replace 1234 by the desired version number s).29 // The JOSM-version can be specified as "latest", "tested" or "snapshot-1234" (replace 1234 by the desired version number). 34 30 // For revisions older than the last ~60 versions, also append "Archiv" to the repository URL above 35 packIntoJar 'org.scribe:scribe:1.3.7' 31 compile 'org.openstreetmap.josm:josm:tested' 32 compile 'org.apache.commons:commons-imaging:1.0-SNAPSHOT' 36 33 37 compile 'org.openstreetmap.josm:josm:latest' 38 compile 'org.apache.commons:commons-imaging:1.0-SNAPSHOT' 34 packIntoJar 'com.amazonaws:aws-java-sdk-s3:1.10.8' 39 35 40 36 testCompile 'junit:junit:4.12' … … 108 104 109 105 jar { 110 from zipTree(configurations.packIntoJar.singleFile)106 from configurations.packIntoJar.collect { it.isDirectory() ? it : zipTree(it) } 111 107 manifest { 112 108 attributes("Plugin-Mainversion": "8433", … … 161 157 gradleVersion = '2.5' 162 158 } 163
Note:
See TracChangeset
for help on using the changeset viewer.