Changeset 31426 in osm for applications


Ignore:
Timestamp:
2015-08-01T00:44:59+02:00 (9 years ago)
Author:
floscher
Message:

Remove scribe-dependency and add new AWS-dependency instead

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/build.gradle

    r31421 r31426  
    1818    url "https://repository.apache.org/content/repositories/snapshots/"
    1919  }
    20   // for scribe-java
    21   maven {
    22     url "https://raw.github.com/fernandezpablo85/scribe-java/mvn-repo/"
    23   }
    2420  //for josm-(latest|tested).jar
    2521  ivy {
     
    3127}
    3228dependencies {
    33   // The JOSM-version can be specified as "latest", "tested" or "snapshot-1234" (replace 1234 by the desired version numbers).
     29  // The JOSM-version can be specified as "latest", "tested" or "snapshot-1234" (replace 1234 by the desired version number).
    3430  // 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'
    3633
    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'
    3935
    4036  testCompile 'junit:junit:4.12'
     
    108104
    109105jar {
    110   from zipTree(configurations.packIntoJar.singleFile)
     106  from configurations.packIntoJar.collect { it.isDirectory() ? it : zipTree(it) }
    111107  manifest {
    112108    attributes("Plugin-Mainversion": "8433",
     
    161157  gradleVersion = '2.5'
    162158}
    163 
Note: See TracChangeset for help on using the changeset viewer.