Changeset 32285 in osm
- Timestamp:
- 2016-06-16T15:25:29+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.classpath
r32203 r32285 4 4 <classpathentry kind="src" path="src"/> 5 5 <classpathentry kind="src" path="test/unit"/> 6 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1. 7"/>6 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 7 7 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 8 8 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> -
applications/editors/josm/plugins/mapillary/INSTALL.md
r32070 r32285 66 66 git rev-parse master > .git/refs/remotes/svn/git-svn # creates a file containing the SHA1 of master-branch 67 67 git svn fetch 68 git reset --hard svn/git-svn 68 git reset --hard svn/git-svn # Make sure you have no uncommitted changes in your repo before doing this 69 69 ``` 70 70 -
applications/editors/josm/plugins/mapillary/build.gradle
r32078 r32285 6 6 apply plugin: 'project-report' 7 7 8 sourceCompatibility = '1. 7'8 sourceCompatibility = '1.8' 9 9 10 10 repositories { … … 28 28 } 29 29 } 30 30 31 dependencies { 31 32 // The JOSM-version can be specified as "latest", "tested" or the numeric version number. 32 33 // When using a numeric version number you can leave out {changing=true}. 33 compile(':josm: 9811')34 compile(':josm:10327') 34 35 // For plugins it's irrelevant, which version is specified, always the latest version is used. 35 36 compile (name: 'apache-commons'){changing=true} … … 75 76 76 77 pmd { 77 toolVersion '5.4.1'78 toolVersion project.property('tools.pmd.version') 78 79 ignoreFailures true 79 targetJdk sourceCompatibility80 ruleSet Files = files('.settings/pmd-ruleset.xml')80 targetJdk 1.7 // 1.8 is not yet available 81 ruleSetConfig = resources.text.fromFile('.settings/pmd-ruleset.xml') 81 82 } 82 83 … … 90 91 /** FindBugs configuration */ 91 92 findbugs { 92 toolVersion = "3.0.1"93 toolVersion = project.property('tools.findbugs.version') 93 94 ignoreFailures = true 94 95 effort = "max" … … 104 105 /** JaCoCo configuration */ 105 106 jacoco { 106 toolVersion = "0.7.5.201505241946"107 toolVersion = project.property('tools.jacoco.version') 107 108 } 108 109 jacocoTestReport { -
applications/editors/josm/plugins/mapillary/gradle.properties
r32201 r32285 11 11 #plugin.early=... 12 12 #plugin.stage=... 13 14 tools.pmd.version=5.4.2 15 tools.findbugs.version=3.0.1 16 tools.jacoco.version=0.7.7.201606060606 -
applications/editors/josm/plugins/mapillary/gradle/wrapper/gradle-wrapper.properties
r32062 r32285 3 3 zipStoreBase=GRADLE_USER_HOME 4 4 zipStorePath=wrapper/dists 5 distributionUrl=https\://services.gradle.org/distributions/gradle-2.1 1-bin.zip6 distributionSha256Sum= 8d7437082356c9fd6309a4479c8db307673965546daea445c6c72759cd6b1ed65 distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip 6 distributionSha256Sum=65bbc0ef9c48be86fb06522fc927d59dcc7c04266f2bb8156be76971f7c3fc4a -
applications/editors/josm/plugins/mapillary/gradlew
r31782 r32285 7 7 ############################################################################## 8 8 9 # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 DEFAULT_JVM_OPTS="" 9 # Attempt to set APP_HOME 10 # Resolve links: $0 may be a link 11 PRG="$0" 12 # Need this for relative symlinks. 13 while [ -h "$PRG" ] ; do 14 ls=`ls -ld "$PRG"` 15 link=`expr "$ls" : '.*-> \(.*\)$'` 16 if expr "$link" : '/.*' > /dev/null; then 17 PRG="$link" 18 else 19 PRG=`dirname "$PRG"`"/$link" 20 fi 21 done 22 SAVED="`pwd`" 23 cd "`dirname \"$PRG\"`/" >/dev/null 24 APP_HOME="`pwd -P`" 25 cd "$SAVED" >/dev/null 11 26 12 27 APP_NAME="Gradle" 13 28 APP_BASE_NAME=`basename "$0"` 29 30 # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 DEFAULT_JVM_OPTS="" 14 32 15 33 # Use the maximum available, or set MAX_FD != -1 to use that value. … … 31 49 msys=false 32 50 darwin=false 51 nonstop=false 33 52 case "`uname`" in 34 53 CYGWIN* ) … … 41 60 msys=true 42 61 ;; 62 NONSTOP* ) 63 nonstop=true 64 ;; 43 65 esac 44 45 # Attempt to set APP_HOME46 # Resolve links: $0 may be a link47 PRG="$0"48 # Need this for relative symlinks.49 while [ -h "$PRG" ] ; do50 ls=`ls -ld "$PRG"`51 link=`expr "$ls" : '.*-> \(.*\)$'`52 if expr "$link" : '/.*' > /dev/null; then53 PRG="$link"54 else55 PRG=`dirname "$PRG"`"/$link"56 fi57 done58 SAVED="`pwd`"59 cd "`dirname \"$PRG\"`/" >/dev/null60 APP_HOME="`pwd -P`"61 cd "$SAVED" >/dev/null62 66 63 67 CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar … … 86 90 87 91 # Increase the maximum file descriptors if we can. 88 if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then92 if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 89 93 MAX_FD_LIMIT=`ulimit -H -n` 90 94 if [ $? -eq 0 ] ; then -
applications/editors/josm/plugins/mapillary/gradlew.bat
r32062 r32285 9 9 if "%OS%"=="Windows_NT" setlocal 10 10 11 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.12 set DEFAULT_JVM_OPTS=13 14 11 set DIRNAME=%~dp0 15 12 if "%DIRNAME%" == "" set DIRNAME=. 16 13 set APP_BASE_NAME=%~n0 17 14 set APP_HOME=%DIRNAME% 15 16 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 set DEFAULT_JVM_OPTS= 18 18 19 19 @rem Find java.exe
Note:
See TracChangeset
for help on using the changeset viewer.