Changeset 3405
- Timestamp:
- 03/10/10 11:37:54 (2 years ago)
- Location:
- print/trunk
- Files:
-
- 1 removed
- 1 modified
-
build.gradle (modified) (4 diffs)
-
buildSrc/src/main/groovy/SSL.groovy (deleted)
Legend:
- Unmodified
- Added
- Removed
-
print/trunk/build.gradle
r3398 r3405 1 import com.camptocamp.gradle.* 2 1 3 group = 'org.mapfish.print' 2 4 version = '1.2-SNAPSHOT' … … 7 9 usePlugin 'eclipse' 8 10 usePlugin 'maven' 11 usePlugin ByteCodeQuality 9 12 10 13 defaultTasks 'jar', 'war', 'standalone' … … 144 147 } 145 148 149 task wrapper(type: Wrapper) { 150 gradleVersion = '0.8' 151 } 146 152 /* 147 153 This task is not ready for prime time. I do not know what parameters the class expects … … 165 171 }*/ 166 172 167 168 /*169 task install(overwrite: true) << {170 env = System.getenv()171 sep = File.separator172 localRepo = env['MAVEN_REPO'] ?: env['HOME']+"${sep}.m2${sep}repository"173 repository(url: "file://"+localRepo)174 snapshotRepository(url: "file://"+localRepo)175 176 addFilter('lib') { artifact, file ->177 artifact.name.contains 'print-lib'178 }179 180 addFilter('standalone') { artifact, file ->181 artifact.name.contains 'print-standalone'182 }183 184 addFilter('war') { artifact, file ->185 artifact.name.contains 'print-servlet'186 }187 }188 */
