Changeset 3405

Show
Ignore:
Timestamp:
03/10/10 11:37:54 (2 years ago)
Author:
jeichar
Message:

intermediate broken build so that I can use git submodules to add the extra code

Location:
print/trunk
Files:
1 removed
1 modified

Legend:

Unmodified
Added
Removed
  • print/trunk/build.gradle

    r3398 r3405  
     1import com.camptocamp.gradle.* 
     2 
    13group = 'org.mapfish.print' 
    24version = '1.2-SNAPSHOT' 
     
    79usePlugin 'eclipse' 
    810usePlugin 'maven' 
     11usePlugin ByteCodeQuality 
    912 
    1013defaultTasks 'jar', 'war', 'standalone' 
     
    144147} 
    145148 
     149task wrapper(type: Wrapper) {  
     150  gradleVersion = '0.8' 
     151} 
    146152/* 
    147153This task is not ready for prime time.  I do not know what parameters the class expects 
     
    165171}*/ 
    166172 
    167  
    168 /* 
    169 task install(overwrite: true) << { 
    170   env = System.getenv() 
    171   sep = File.separator 
    172   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 */