├── .java-version ├── settings.gradle ├── gradle.properties.enc ├── src ├── test │ ├── resources │ │ └── test.zip │ └── groovy │ │ └── nebula │ │ └── core │ │ ├── ClassHelperSpec.groovy │ │ ├── tasks │ │ ├── UntarProjectSpec.groovy │ │ ├── UnzipProjectSpec.groovy │ │ └── UnzipIntegrationSpec.groovy │ │ ├── GradleHelperSpec.groovy │ │ ├── GradleHelperProjectSpec.groovy │ │ └── ProjectTypeSpec.groovy └── main │ └── groovy │ └── nebula │ └── core │ ├── ProjectType.groovy │ ├── tasks │ ├── Untar.groovy │ ├── Unzip.groovy │ └── Download.groovy │ ├── ClassHelper.groovy │ ├── CopySpecHelper.groovy │ ├── NamedContainerProperOrder.groovy │ ├── AlternativeArchiveTask.groovy │ └── GradleHelper.groovy ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── m2-init.gradle └── buildViaTravis.sh ├── .gitignore ├── CHANGELOG.md ├── .travis.yml ├── CONTRIBUTING.md ├── bootstrap.gradle ├── gradlew.bat ├── README.md ├── gradlew └── LICENSE /.java-version: -------------------------------------------------------------------------------- 1 | 1.7 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='nebula-core' 2 | -------------------------------------------------------------------------------- /gradle.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/nebula-core/HEAD/gradle.properties.enc -------------------------------------------------------------------------------- /src/test/resources/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/nebula-core/HEAD/src/test/resources/test.zip -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/nebula-core/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .gradle/ 3 | gradle.properties 4 | 5 | out/ 6 | .idea/ 7 | *.ipr 8 | *.iml 9 | *.iws 10 | 11 | .classpath 12 | .project 13 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 30 11:36:51 PDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-rc-2-bin.zip 7 | -------------------------------------------------------------------------------- /gradle/m2-init.gradle: -------------------------------------------------------------------------------- 1 | allprojects { 2 | buildscript { 3 | repositories { 4 | mavenLocal() 5 | } 6 | configurations.all { 7 | resolutionStrategy.cacheChangingModulesFor 0, 'hours' 8 | } 9 | } 10 | 11 | repositories { 12 | mavenLocal() 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/ClassHelperSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import spock.lang.Specification 4 | 5 | import java.util.jar.Manifest 6 | 7 | class ClassHelperSpec extends Specification { 8 | 9 | def 'read manifest'() { 10 | when: 11 | Manifest manifest = ClassHelper.findManifest( getClass() ) 12 | 13 | then: 14 | manifest != null 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/tasks/UntarProjectSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import nebula.test.ProjectSpec 4 | 5 | class UntarProjectSpec extends ProjectSpec { 6 | def 'create task'() { 7 | when: 8 | def downloadTask = project.task([type:Download], 'download') 9 | def uploadTask = (Untar) project.task([type:Untar], 'untar') 10 | uploadTask.from(downloadTask) 11 | 12 | then: 13 | uploadTask.inputs.hasInputs 14 | !uploadTask.outputs.files.isEmpty() 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 3.1.0 / 2016-3-18 2 | =================== 3 | 4 | * Switch Download task to httpclient, so 302s are followed 5 | 6 | 2.2.0 / 2015-1-30 7 | =================== 8 | 9 | * Move to gradle 2.2.1 10 | 11 | 1.12.1 / 2014-06-11 12 | =================== 13 | 14 | * Upgrade of nebula-plugin-plugin to 1.12.1 15 | 16 | 1.9.1 / 2014-01-14 17 | ================= 18 | 19 | * Add AlternativeArchiveTask which can be extended instead of AbstractArchiveTask while still giving the same signatures 20 | 21 | 1.9.0 / 2014-01-10 22 | ================= 23 | 24 | * Initial release 25 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/ProjectType.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import groovy.transform.Canonical 4 | import org.gradle.api.Project 5 | 6 | @Canonical 7 | class ProjectType { 8 | boolean isRootProject 9 | boolean isParentProject 10 | boolean isLeafProject 11 | 12 | ProjectType(Project project) { 13 | isRootProject = (project == project.rootProject) 14 | isParentProject = project.rootProject.subprojects.any { it.parent == project } // Parent of any projects, aka Uncle/Aunt project 15 | isLeafProject = !isParentProject 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | sudo: false 3 | jdk: 4 | - oraclejdk7 5 | install: true 6 | script: "./gradle/buildViaTravis.sh" 7 | cache: 8 | directories: 9 | - $HOME/.gradle/caches/ 10 | - $HOME/.gradle/wrapper/ 11 | before_install: 12 | - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_8f5382672e20_key -iv $encrypted_8f5382672e20_iv 13 | -in gradle.properties.enc -out gradle.properties -d || true 14 | after_success: 15 | - "./gradlew jacocoTestReport coveralls" 16 | notifications: 17 | webhooks: 18 | urls: 19 | - https://webhooks.gitter.im/e/a79db88177c15928246a 20 | on_success: change 21 | on_failure: always 22 | on_start: never 23 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/GradleHelperSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import com.google.common.io.Files 4 | import org.gradle.api.internal.project.DefaultProject 5 | import spock.lang.Specification 6 | 7 | class GradleHelperSpec extends Specification { 8 | GradleHelper gradleHelper 9 | 10 | def setup() { 11 | def project = Stub(DefaultProject) { 12 | getBuildDir() >> Files.createTempDir() 13 | } 14 | project.getBuildDir() >> Files.createTempDir() 15 | gradleHelper = new GradleHelper(project) 16 | } 17 | 18 | def 'can create temp directory'() { 19 | when: 20 | def tmpDir = gradleHelper.getTempDir('for-unit-test') 21 | 22 | then: 23 | //1 * project.getBuildDir() 24 | tmpDir != null 25 | tmpDir.isDirectory() 26 | tmpDir.canWrite() 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/tasks/UnzipProjectSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import nebula.test.ProjectSpec 4 | 5 | class UnzipProjectSpec extends ProjectSpec { 6 | def 'create task'() { 7 | when: 8 | def downloadTask = project.task([type:Download], 'download') 9 | def uploadTask = (Unzip) project.task([type:Unzip], 'unzip') 10 | uploadTask.from(downloadTask) 11 | 12 | then: 13 | uploadTask.inputs.hasInputs 14 | !uploadTask.outputs.files.isEmpty() 15 | uploadTask.source 16 | uploadTask.destinationDir.exists() 17 | } 18 | 19 | def 'destination dir can be overridden'() { 20 | when: 21 | def downloadTask = project.task([type:Download], 'download') 22 | def uploadTask = (Unzip) project.task([type:Unzip], 'unzip') 23 | uploadTask.into(new File(project.buildDir, 'unzipped')) 24 | uploadTask.from(downloadTask) 25 | 26 | then: 27 | uploadTask.inputs.hasInputs 28 | !uploadTask.outputs.files.isEmpty() 29 | uploadTask.source 30 | uploadTask.destinationDir.name == 'unzipped' 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Nebula 2 | 3 | If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request. When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. 4 | 5 | ## License 6 | 7 | By contributing your code, you agree to license your contribution under the terms of the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0). Your contributions should also include the following header: 8 | 9 | ``` 10 | /** 11 | * Copyright 2015 the original author or authors. 12 | * 13 | * Licensed under the Apache License, Version 2.0 (the "License"); 14 | * you may not use this file except in compliance with the License. 15 | * You may obtain a copy of the License at 16 | * 17 | * http://www.apache.org/licenses/LICENSE-2.0 18 | * 19 | * Unless required by applicable law or agreed to in writing, software 20 | * distributed under the License is distributed on an "AS IS" BASIS, 21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 22 | * See the License for the specific language governing permissions and 23 | * limitations under the License. 24 | */ 25 | ``` 26 | -------------------------------------------------------------------------------- /gradle/buildViaTravis.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # This script will build the project. 3 | 4 | SWITCHES="--info --stacktrace" 5 | 6 | GRADLE_VERSION=$(./gradlew -version | grep Gradle | cut -d ' ' -f 2) 7 | 8 | if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then 9 | echo -e "Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH]" 10 | ./gradlew build $SWITCHES 11 | elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then 12 | echo -e 'Build Branch with Snapshot => Branch ['$TRAVIS_BRANCH']' 13 | ./gradlew -Prelease.travisci=true snapshot $SWITCHES 14 | elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then 15 | echo -e 'Build Branch for Release => Branch ['$TRAVIS_BRANCH'] Tag ['$TRAVIS_TAG']' 16 | case "$TRAVIS_TAG" in 17 | *-rc\.*) 18 | ./gradlew -Prelease.travisci=true -Prelease.useLastTag=true candidate $SWITCHES 19 | ;; 20 | *) 21 | ./gradlew -Prelease.travisci=true -Prelease.useLastTag=true final $SWITCHES 22 | ;; 23 | esac 24 | else 25 | echo -e 'WARN: Should not be here => Branch ['$TRAVIS_BRANCH'] Tag ['$TRAVIS_TAG'] Pull Request ['$TRAVIS_PULL_REQUEST']' 26 | ./gradlew build $SWITCHES 27 | fi 28 | 29 | EXIT=$? 30 | 31 | rm -f "$HOME/.gradle/caches/modules-2/modules-2.lock" 32 | rm -rf "$HOME/.gradle/caches/$GRADLE_VERSION/plugin-resolution" 33 | 34 | exit $EXIT 35 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/GradleHelperProjectSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import nebula.test.ProjectSpec 4 | 5 | import java.util.concurrent.atomic.AtomicBoolean 6 | import java.util.concurrent.atomic.AtomicInteger 7 | 8 | class GradleHelperProjectSpec extends ProjectSpec { 9 | def 'able to hijack afterEvaluate'() { 10 | def helper = new GradleHelper(project) 11 | def counter = new AtomicInteger(0) 12 | def ran = new AtomicBoolean(false) 13 | when: 14 | helper.beforeEvaluate { 15 | counter.set(1) 16 | ran.set(true) 17 | } 18 | project.afterEvaluate { 19 | counter.set(2) 20 | } 21 | project.evaluate() 22 | 23 | then: 24 | counter.get() == 2 25 | ran.get() == true 26 | } 27 | 28 | def 'able to hijack afterEvaluate afterwards'() { 29 | def helper = new GradleHelper(project) 30 | def counter = new AtomicInteger(0) 31 | def ran = new AtomicBoolean(false) 32 | when: 33 | project.afterEvaluate { 34 | counter.set(2) 35 | } 36 | helper.beforeEvaluate { 37 | counter.set(1) 38 | ran.set(true) 39 | } 40 | project.evaluate() 41 | 42 | then: 43 | counter.get() == 2 44 | ran.get() == true 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /bootstrap.gradle: -------------------------------------------------------------------------------- 1 | import org.gradle.api.publish.maven.MavenPublication 2 | 3 | buildscript { 4 | repositories { jcenter() } 5 | dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.3' } 6 | } 7 | 8 | repositories { jcenter() } 9 | 10 | apply plugin: 'groovy' 11 | apply plugin: 'idea' 12 | 13 | group = 'com.netflix.nebula' 14 | 15 | apply plugin: 'maven-publish' 16 | 17 | publishing { 18 | publications { 19 | mavenJava(MavenPublication) { 20 | from components.java 21 | } 22 | } 23 | } 24 | 25 | apply plugin: 'bintray' 26 | def packageName = name 27 | bintray { 28 | user = bintrayUser 29 | key = bintrayKey 30 | publications = ['mavenJava'] 31 | pkg { 32 | repo = 'gradle-plugins' 33 | userOrg = 'nebula' 34 | name = packageName 35 | licenses = ['Apache-2.0'] 36 | } 37 | // Will have to manually publish on bintray.com 38 | } 39 | bintrayUpload.dependsOn(build) 40 | 41 | task install(dependsOn: 'publishMavenJavaPublicationToMavenLocal') << { 42 | logger.info "Installed $project.name" 43 | } 44 | 45 | plugins.withType(JavaPlugin) { 46 | sourceCompatibility = 1.6 47 | targetCompatibility = 1.6 48 | } 49 | 50 | dependencies { 51 | compile gradleApi() 52 | compile localGroovy() 53 | compile 'org.apache.commons:commons-lang3:3.2.1' 54 | testCompile('com.netflix.nebula:nebula-test:2.2.0-SNAPSHOT') { 55 | exclude group: 'org.codehaus.groovy' 56 | } 57 | } 58 | 59 | task createWrapper(type: Wrapper) { 60 | gradleVersion = '2.2.1' 61 | } 62 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/tasks/Untar.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import org.gradle.api.DefaultTask 4 | import org.gradle.api.internal.file.DefaultFileOperations 5 | import org.gradle.api.internal.file.TemporaryFileProvider 6 | import org.gradle.api.tasks.Copy 7 | 8 | import javax.inject.Inject 9 | 10 | /** 11 | * Task to take File or Task inputs, then untar them implicitly 12 | */ 13 | class Untar extends Copy { 14 | 15 | DefaultFileOperations fileOperations 16 | 17 | @Inject 18 | Untar(DefaultFileOperations fileOperations, TemporaryFileProvider temporaryFileProvider) { 19 | super() 20 | this.fileOperations = fileOperations 21 | 22 | // Destination dir should be set for up-to-date checks. User has to overwrite to keep using the same output 23 | conventionMapping('destinationDir') { 24 | destinationDir = temporaryFileProvider.createTemporaryDirectory('untar', 'extracted') 25 | return destinationDir 26 | } 27 | 28 | } 29 | 30 | Untar from(File tarFile) { 31 | from( fileOperations.tarTree(tarFile) ) 32 | return this 33 | } 34 | 35 | Untar from(DefaultTask task) { 36 | // We can't just pass the outputs, since we're actually going to pass a tarTree 37 | inputs.source(task) 38 | super.from { 39 | logger.info("Lazily pulling output from ${task} specifically ${task.outputs.files.singleFile}") 40 | fileOperations.tarTree(task.outputs.files.singleFile) 41 | } 42 | return this 43 | } 44 | 45 | /** 46 | * It's common to have a single directory in a tar file. This method extract that for the user. 47 | */ 48 | File firstDirectory() { 49 | def files = getDestinationDir().listFiles() 50 | (files.length > 0)?files[0]:null 51 | } 52 | 53 | // destinationFile will be to the temporary directory, unless overridden. 54 | } -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/tasks/Unzip.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import org.gradle.api.DefaultTask 4 | import org.gradle.api.internal.IConventionAware 5 | import org.gradle.api.internal.file.DefaultFileOperations 6 | import org.gradle.api.internal.file.TemporaryFileProvider 7 | import org.gradle.api.tasks.Copy 8 | 9 | import javax.inject.Inject 10 | 11 | /** 12 | * Task to take File or Task inputs, then unzip them implicitly 13 | */ 14 | class Unzip extends Copy { 15 | 16 | DefaultFileOperations fileOperations 17 | 18 | @Inject 19 | Unzip(DefaultFileOperations fileOperations, TemporaryFileProvider temporaryFileProvider) { 20 | super() 21 | this.fileOperations = fileOperations 22 | 23 | // Destination dir should be set for up-to-date checks. User has to overwrite to keep using the same output 24 | // This is set now, but the user can easily override. 25 | into { 26 | temporaryFileProvider.createTemporaryDirectory('unzip', 'extracted') 27 | } 28 | 29 | // conventionMapping('destinationDir') { 30 | // destinationDir = temporaryFileProvider.createTemporaryDirectory('unzip', 'extracted') 31 | // return destinationDir 32 | // } 33 | } 34 | 35 | Unzip from(File zipFile) { 36 | from( fileOperations.zipTree(zipFile) ) 37 | return this 38 | } 39 | 40 | Unzip from(DefaultTask task) { 41 | // We can't just pass the outputs, since we're actually going to pass a zipTree 42 | inputs.source(task) 43 | super.from { 44 | logger.info("Lazily pulling output from ${task} specifically ${task.outputs.files.singleFile}") 45 | fileOperations.zipTree(task.outputs.files.singleFile) 46 | } 47 | return this 48 | } 49 | 50 | /** 51 | * It's common to have a single directory in a zip file. This method extract that for the user. 52 | */ 53 | File firstDirectory() { 54 | def files = getDestinationDir().listFiles() 55 | (files.length > 0)?files[0]:null 56 | } 57 | 58 | // destinationFile will be to the temporary directory, unless overridden. 59 | } -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/ClassHelper.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import java.util.jar.JarFile 4 | import java.util.jar.Manifest 5 | 6 | /** 7 | * Inspect a class for certain meta-data. 8 | */ 9 | class ClassHelper { 10 | 11 | static String findSpecificationVersion(Class clazz) { 12 | def pkg = clazz.getPackage() 13 | pkg.specificationVersion?:null 14 | } 15 | 16 | static Manifest findManifest(Class clazz) { 17 | if (clazz.classLoader instanceof URLClassLoader) { 18 | try { 19 | return findManifestViaClassloader(clazz) 20 | } catch(FileNotFoundException nfe) { 21 | return findManifestViaJarFile(clazz) 22 | } 23 | } else { 24 | findManifestViaJarFile(clazz) 25 | } 26 | } 27 | 28 | static findManifestViaClassloader(Class clazz) { 29 | assert clazz.classLoader instanceof URLClassLoader 30 | URLClassLoader cl = (URLClassLoader) clazz.getClassLoader(); 31 | URL url = cl.findResource("META-INF/MANIFEST.MF"); 32 | Manifest manifest = new Manifest(url.openStream()); 33 | return manifest 34 | } 35 | 36 | static findManifestViaJarFile(Class clazz) { 37 | final URL jarUrl = clazz.getProtectionDomain().getCodeSource().getLocation(); 38 | final JarFile jf = new JarFile(new File(jarUrl.toURI())); 39 | return jf.getManifest() 40 | } 41 | 42 | static findManifestViaResource(Class clazz) { 43 | String className = clazz.getSimpleName() + ".class"; 44 | String classPath = clazz.getResource(className).toString(); 45 | if (!classPath.startsWith("jar")) { 46 | // Class not from JAR 47 | return null 48 | } 49 | String manifestPath = classPath.substring(0, classPath.lastIndexOf("!") + 1) + "/META-INF/MANIFEST.MF"; 50 | Manifest manifest = new Manifest(new URL(manifestPath).openStream()); 51 | return manifest 52 | } 53 | 54 | static def findManifestValue(Class clazz, String key, Object defaultValue) { 55 | def manifest = findManifest(clazz) 56 | return (manifest && manifest.getEntries().containsKey(key))? manifest.getEntries().get(key) : defaultValue 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/CopySpecHelper.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import org.apache.commons.lang3.reflect.FieldUtils 4 | import org.gradle.api.Action 5 | import org.gradle.api.internal.file.CopyActionProcessingStreamAction 6 | import org.gradle.api.internal.file.copy.* 7 | import org.gradle.api.tasks.WorkResult 8 | import org.gradle.internal.nativeintegration.services.FileSystems 9 | import org.gradle.internal.reflect.DirectInstantiator 10 | import org.gradle.internal.reflect.Instantiator 11 | 12 | class CopySpecHelper { 13 | static visitCopySpec(CopySpecInternal copySpec, Closure closure) { 14 | Instantiator instantiator = new DirectInstantiator() 15 | //FileSystem fileSystem = new GenericFileSystem(new EmptyChmod(), new FallbackStat(), new FallbackSymlink()) 16 | org.gradle.internal.nativeplatform.filesystem.FileSystem fileSystem = FileSystems.getDefault() 17 | CopyActionExecuter copyActionExecuter = new CopyActionExecuter(instantiator, fileSystem); 18 | copyActionExecuter.execute(copySpec, new CopyAction() { 19 | @Override 20 | WorkResult execute(CopyActionProcessingStream stream) { 21 | stream.process(new CopyActionProcessingStreamAction() { 22 | @Override 23 | void processFile(FileCopyDetailsInternal details) { 24 | closure.call(copySpec, details) 25 | } 26 | }) 27 | } 28 | }) 29 | } 30 | 31 | static void visitAllCopySpecs(CopySpecInternal delegateCopySpec, Closure closure) { 32 | delegateCopySpec.walk(new Action() { 33 | @Override 34 | void execute(CopySpecInternal csi) { 35 | // TODO Try to search for core spec, e.g. dig deeper into delegating copy specs 36 | if (csi instanceof DestinationRootCopySpec) { 37 | csi = FieldUtils.readField(csi, 'delegate', true) 38 | } 39 | 40 | visitCopySpec(csi, closure) 41 | } 42 | }) 43 | } 44 | 45 | static CopySpecInternal findCopySpec(CopySpecInternal delegateCopySpec, Closure closure) { 46 | def foundCsi = null 47 | visitAllCopySpecs(delegateCopySpec) { CopySpecInternal csi, FileCopyDetailsInternal details -> 48 | if (foundCsi == null && closure.call(csi, details)) { 49 | foundCsi = csi 50 | } 51 | } 52 | return foundCsi 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 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 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/ProjectTypeSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import nebula.test.ProjectSpec 4 | import org.gradle.api.Project 5 | import org.gradle.testfixtures.ProjectBuilder 6 | 7 | class ProjectTypeSpec extends ProjectSpec { 8 | def 'single project is properly identified as a root and leaf'() { 9 | when: 10 | def singleProject = new ProjectType(project) 11 | 12 | then: 13 | singleProject.isRootProject 14 | singleProject.isLeafProject 15 | !singleProject.isParentProject 16 | } 17 | 18 | def 'single level multiproject identifies top level as root and parent'() { 19 | createSubproject(project, 'sub') 20 | 21 | when: 22 | def multiProject = new ProjectType(project) 23 | 24 | then: 25 | multiProject.isRootProject 26 | multiProject.isParentProject 27 | !multiProject.isLeafProject 28 | } 29 | 30 | def 'single level multiproject identifies subprojects as leaf'() { 31 | def sub = createSubproject(project, 'sub') 32 | 33 | when: 34 | def multiSub = new ProjectType(sub) 35 | 36 | then: 37 | !multiSub.isRootProject 38 | !multiSub.isParentProject 39 | multiSub.isLeafProject 40 | } 41 | 42 | def 'multi level multiproject identifies top level as root and parent'() { 43 | def mid = createSubproject(project, 'mid') 44 | createSubproject(mid, 'sub') 45 | 46 | when: 47 | def multiTop = new ProjectType(project) 48 | 49 | then: 50 | multiTop.isRootProject 51 | multiTop.isParentProject 52 | !multiTop.isLeafProject 53 | } 54 | 55 | def 'multi level multiproject identifies mid level as parent'() { 56 | def mid = createSubproject(project, 'mid') 57 | createSubproject(mid, 'sub') 58 | 59 | when: 60 | def multiMid = new ProjectType(mid) 61 | 62 | then: 63 | !multiMid.isRootProject 64 | multiMid.isParentProject 65 | !multiMid.isLeafProject 66 | } 67 | 68 | def 'multi level multiproject identifies sub as leaf'() { 69 | def mid = createSubproject(project, 'mid') 70 | def sub = createSubproject(mid, 'sub') 71 | 72 | when: 73 | def multiSub = new ProjectType(sub) 74 | 75 | then: 76 | !multiSub.isRootProject 77 | !multiSub.isParentProject 78 | multiSub.isLeafProject 79 | } 80 | 81 | static Project createSubproject(Project parentProject, String name) { 82 | ProjectBuilder.builder().withName(name).withParent(parentProject).build() 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Nebula Core 2 | 3 | ![Support Status](https://img.shields.io/badge/nebula-internal-lightgray.svg) 4 | [![Build Status](https://travis-ci.org/nebula-plugins/nebula-core.svg?branch=master)](https://travis-ci.org/nebula-plugins/nebula-core) 5 | [![Coverage Status](https://coveralls.io/repos/nebula-plugins/nebula-core/badge.svg?branch=master&service=github)](https://coveralls.io/github/nebula-plugins/nebula-core?branch=master) 6 | [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/nebula-plugins/nebula-core?utm_source=badgeutm_medium=badgeutm_campaign=pr-badge) 7 | [![Apache 2.0](https://img.shields.io/github/license/nebula-plugins/nebula-core.svg)](http://www.apache.org/licenses/LICENSE-2.0) 8 | 9 | This specific project holds some "helper" classes for testing and interacting with Gradle. It's not meant to get too big, 10 | but should serve as a central place for all plugins. This project should have no dependency and not contain any specific 11 | plugins. 12 | 13 | ## Tasks 14 | 15 | # Download 16 | 17 | A task to download a file, with incremental processing support. Current implementation is naive, but it'll be improved later. Either downloadBase and downloadFileName can be specified or a full URI as downloadUrl. The destinationDir can be specified but it's optional, though it can always be used by other tasks to reference its output. 18 | 19 | import nebula.core.tasks.Download 20 | 21 | task download(type: Download) { 22 | downloadBase = 'http://localhost' 23 | downloadFileName = 'file.zip' 24 | } 25 | 26 | task downloadFull(type: Download) { 27 | downloadUrl = 'http://localhost/file.zip' 28 | } 29 | 30 | # Unzip 31 | 32 | While unzipping comes built-in to Gradle, via ZipTree, encapsulating a few things in a task does make it easier. 33 | 34 | import nebula.core.tasks.Unzip 35 | 36 | task unzip(type: Unzip) { 37 | from(file('tmp/resources.zip')) 38 | } 39 | 40 | It is essentially still a Copy task, but with the added advantage of a _from_ method to allow pulling from the output of another task. And a convenience method, _firstDirectory_, to return the first directory in the zip file, which is common. 41 | 42 | import nebula.core.tasks.* 43 | 44 | task download(type: Download) { 45 | downloadBase = 'http://www.us.apache.org/dist/tomcat/tomcat-6/v6.0.39/bin' 46 | downloadFileName = 'apache-tomcat-6.0.39.tar.gz' 47 | } 48 | 49 | task unzip(type: Unzip) { 50 | from(tasks.download) 51 | } 52 | 53 | task package(type: Deb) { 54 | into('/opt/tomcat6') 55 | from(tasks.unzip.firstDirectory()) // to get the apache-tomcat-6.0.39 directory out of the way 56 | } 57 | 58 | # Untar 59 | 60 | Task that works identically yo Unzip, but works against tar files. 61 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/tasks/Download.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import org.apache.http.HttpStatus 4 | import org.apache.http.client.config.RequestConfig 5 | import org.apache.http.client.methods.CloseableHttpResponse 6 | import org.apache.http.client.methods.HttpGet 7 | import org.apache.http.impl.client.CloseableHttpClient 8 | import org.apache.http.impl.client.HttpClients 9 | import org.gradle.api.internal.ConventionTask 10 | import org.gradle.api.internal.file.TemporaryFileProvider 11 | import org.gradle.api.tasks.Input 12 | import org.gradle.api.tasks.Optional 13 | import org.gradle.api.tasks.OutputFile 14 | import org.gradle.api.tasks.TaskAction 15 | 16 | import javax.inject.Inject 17 | 18 | /** 19 | * downloadUrl or downloadBase need to be provided. downloadFileName is required if downloadBase is provided. If downloadUrl 20 | * is provided, then downloadFileName is optional but can be used to control the destination file name. If downloadFileName 21 | * isn't provided, it'll saved to a temporary directory which is not destinationDir. 22 | * 23 | *
24 |  *     import netflix.nebula.*
25 |  *     task download(type: Download) {*         downloadBase = 'http://localhost'
26 |  *         downloadFileName = 'file.zip'
27 |  *}*     task unzip(type: Unzip) {*         from(tasks.download)
28 |  *}* 
29 | */ 30 | class Download extends ConventionTask { 31 | @Input 32 | @Optional 33 | String downloadBase 34 | 35 | @Input 36 | @Optional 37 | String downloadFileName 38 | 39 | @Input 40 | @Optional 41 | File destinationDir 42 | 43 | @OutputFile 44 | File destinationFile 45 | 46 | String downloadUrl 47 | 48 | private CloseableHttpClient httpClient 49 | 50 | @Inject 51 | Download(TemporaryFileProvider temporaryFileProvider) { 52 | super() 53 | conventionMapping('destinationDir') { 54 | // Cache value back onto class, to lock it in. 55 | destinationDir = temporaryFileProvider.createTemporaryDirectory('download', 'tmp') 56 | return destinationDir 57 | } 58 | conventionMapping('destinationFile') { 59 | destinationFile = (getDownloadFileName()) ? 60 | new File(getDestinationDir(), getDownloadFileName()) : 61 | temporaryFileProvider.createTemporaryFile('downloaded', 'part') 62 | return destinationFile 63 | } 64 | conventionMapping('downloadUrl') { 65 | "${getDownloadBase()}/${getDownloadFileName()}".toString() // Can't return a GString 66 | } 67 | 68 | RequestConfig requestConfig = RequestConfig.custom() 69 | .setConnectTimeout(30000) 70 | .setSocketTimeout(30000) 71 | .build() 72 | 73 | httpClient = HttpClients.custom() 74 | .setDefaultRequestConfig(requestConfig) 75 | .build() 76 | } 77 | 78 | @TaskAction 79 | doDownload() { 80 | logger.info("Downloading ${getDownloadUrl()} to ${getDestinationFile()}") 81 | def httpGet = new HttpGet(getDownloadUrl()) 82 | CloseableHttpResponse response = httpClient.execute(httpGet) 83 | if (response.statusLine.statusCode != HttpStatus.SC_OK) { 84 | throw new IllegalStateException("Download of ${getDownloadUrl()} failed: $response.statusLine") 85 | } 86 | try { 87 | response.entity.writeTo(new FileOutputStream(getDestinationFile())) 88 | } finally { 89 | response.close() 90 | } 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /src/test/groovy/nebula/core/tasks/UnzipIntegrationSpec.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core.tasks 2 | 3 | import nebula.test.IntegrationSpec 4 | import nebula.test.functional.ExecutionResult 5 | import spock.lang.Shared 6 | 7 | class UnzipIntegrationSpec extends IntegrationSpec { 8 | @Shared 9 | String base = 'https://bintray.com/artifact/download/nebula/gradle-plugins/com/netflix/nebula/nebula-core/3.0.1' 10 | String filename = 'nebula-core-3.0.1.jar' 11 | String url = "$base/$filename" 12 | 13 | def 'confirm task runs'() { 14 | setup: 15 | buildFile << """ 16 | import nebula.core.tasks.* 17 | task download(type: Download) { 18 | downloadBase = '$base' 19 | downloadFileName = '$filename' 20 | } 21 | task unzip(type: Unzip) { 22 | from(tasks.download) 23 | } 24 | """.stripIndent() 25 | 26 | when: 27 | ExecutionResult result = runTasksSuccessfully('unzip') 28 | 29 | then: 30 | result.wasExecuted(':download') 31 | } 32 | 33 | def 'confirm task is up to date for a second run, when the destination is set'() { 34 | setup: 35 | buildFile << """ 36 | import nebula.core.tasks.* 37 | task download(type: Download) { 38 | downloadBase = '$base' 39 | downloadFileName = '$filename' 40 | destinationDir = buildDir 41 | } 42 | task unzip(type: Unzip) { 43 | from(tasks.download) 44 | } 45 | """.stripIndent() 46 | 47 | when: 48 | runTasksSuccessfully('unzip') 49 | ExecutionResult result = runTasksSuccessfully('unzip') 50 | 51 | then: 52 | result.wasUpToDate(':download') 53 | } 54 | 55 | def 'destination dir can be overridden'() { 56 | setup: 57 | buildFile << """ 58 | import nebula.core.tasks.* 59 | task download(type: Download) { 60 | downloadBase = '$base' 61 | downloadFileName = '$filename' 62 | } 63 | task unzip(type: Unzip) { 64 | into( new File(buildDir, 'unzipped') ) 65 | from(tasks.download) 66 | } 67 | """.stripIndent() 68 | 69 | when: 70 | runTasksSuccessfully('unzip') 71 | 72 | then: 73 | File buildDir = new File(projectDir, 'build') 74 | File destDir = new File(buildDir, 'unzipped') 75 | destDir.exists() 76 | destDir.listFiles().toList()*.name == ['META-INF', 'nebula'] 77 | } 78 | 79 | def 'task runs'() { 80 | setup: 81 | buildFile << """ 82 | import nebula.core.tasks.* 83 | task download(type: Download) { 84 | downloadUrl = '$url' 85 | } 86 | task unzip(type: Unzip) { 87 | into( new File(buildDir, 'unzipped') ) 88 | from(tasks.download) 89 | } 90 | """.stripIndent() 91 | 92 | when: 93 | runTasksSuccessfully('unzip') 94 | 95 | then: 96 | File buildDir = new File(projectDir, 'build') 97 | File destDir = new File(buildDir, 'unzipped') 98 | destDir.exists() 99 | 100 | destDir.listFiles().toList()*.name == ['META-INF', 'nebula'] 101 | def firstDir = new File(destDir, 'META-INF') 102 | firstDir 103 | 104 | def manifestFile = new File(firstDir, 'MANIFEST.MF') 105 | manifestFile 106 | manifestFile.text.contains("Manifest-Version: 1.0") 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/NamedContainerProperOrder.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import org.gradle.api.NamedDomainObjectFactory 4 | import org.gradle.api.Namer 5 | import org.gradle.api.Project 6 | import org.gradle.api.internal.DynamicPropertyNamer 7 | import org.gradle.api.internal.FactoryNamedDomainObjectContainer 8 | import org.gradle.api.internal.project.ProjectInternal 9 | import org.gradle.internal.reflect.Instantiator 10 | import org.gradle.util.ConfigureUtil 11 | 12 | public class NamedContainerProperOrder extends FactoryNamedDomainObjectContainer { 13 | 14 | public static NamedContainerProperOrder container(Project p, Class type) { 15 | Instantiator instantiator = ((ProjectInternal) p).getServices().get(Instantiator.class); 16 | return instantiator.newInstance(NamedContainerProperOrder.class, type, instantiator, new DynamicPropertyNamer()); 17 | } 18 | 19 | @Override 20 | public T create(String name, Closure configureClosure) { 21 | assertCanAdd(name); 22 | T object = doCreate(name); 23 | // Configure the object BEFORE, adding and kicking off addEvents in doAdd 24 | ConfigureUtil.configure(configureClosure, object); 25 | add(object); 26 | return object; 27 | } 28 | 29 | // @groovy.transform.InheritConstructors doesn't work with this class, so copying them here. 30 | /** 31 | *

Creates a container that instantiates reflectively, expecting a 1 arg constructor taking the name.

32 | * 33 | *

The type must implement the {@link org.gradle.api.Named} interface as a {@link org.gradle.api.Namer} will be created based on this type.

34 | * 35 | * @param type The concrete type of element in the container (must implement {@link org.gradle.api.Named}) 36 | * @param instantiator The instantiator to use to create any other collections based on this one 37 | */ 38 | public NamedContainerProperOrder(Class type, Instantiator instantiator) { 39 | super(type, instantiator) 40 | } 41 | 42 | /** 43 | *

Creates a container that instantiates reflectively, expecting a 1 arg constructor taking the name.

44 | * 45 | * @param type The concrete type of element in the container (must implement {@link org.gradle.api.Named}) 46 | * @param instantiator The instantiator to use to create any other collections based on this one 47 | * @param namer The naming strategy to use 48 | */ 49 | public NamedContainerProperOrder(Class type, Instantiator instantiator, Namer namer) { 50 | super(type, instantiator, namer) 51 | } 52 | 53 | /** 54 | *

Creates a container that instantiates using the given factory.

55 | * 56 | * @param type The concrete type of element in the container (must implement {@link org.gradle.api.Named}) 57 | * @param instantiator The instantiator to use to create any other collections based on this one 58 | * @param factory The factory responsible for creating new instances on demand 59 | */ 60 | public NamedContainerProperOrder(Class type, Instantiator instantiator, NamedDomainObjectFactory factory) { 61 | super(type, instantiator, factory) 62 | } 63 | 64 | /** 65 | *

Creates a container that instantiates using the given factory.

66 | * 67 | * @param type The concrete type of element in the container 68 | * @param instantiator The instantiator to use to create any other collections based on this one 69 | * @param namer The naming strategy to use 70 | * @param factory The factory responsible for creating new instances on demand 71 | */ 72 | public NamedContainerProperOrder(Class type, Instantiator instantiator, Namer namer, NamedDomainObjectFactory factory) { 73 | super(type, instantiator, namer, factory) 74 | } 75 | 76 | /** 77 | *

Creates a container that instantiates using the given factory.

78 | * 79 | * @param type The concrete type of element in the container (must implement {@link org.gradle.api.Named}) 80 | * @param instantiator The instantiator to use to create any other collections based on this one 81 | * @param factoryClosure The closure responsible for creating new instances on demand 82 | */ 83 | public NamedContainerProperOrder(Class type, Instantiator instantiator, final Closure factoryClosure) { 84 | super(type, instantiator, factoryClosure) 85 | } 86 | 87 | } 88 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/AlternativeArchiveTask.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | /* 4 | * Copyright 2009 the original author or authors. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | //package org.gradle.api.tasks.bundling; 19 | 20 | import org.gradle.api.DefaultTask 21 | import org.gradle.api.tasks.OutputFile 22 | import org.gradle.util.GUtil 23 | 24 | /** 25 | * Coping a bulk of org.gradle.api.tasks.bundling.AbstractArchiveTask since the interface is so useful. 26 | */ 27 | class AlternativeArchiveTask extends DefaultTask { 28 | private File destinationDir; 29 | private String customName; 30 | private String baseName; 31 | private String appendix; 32 | private String version; 33 | private String extension; 34 | private String classifier = ""; 35 | 36 | /** 37 | * Returns the archive name. If the name has not been explicitly set, the pattern for the name is: 38 | * [baseName]-[appendix]-[version]-[classifier].[extension] 39 | * 40 | * @return the archive name. 41 | */ 42 | public String getArchiveName() { 43 | if (customName != null) { 44 | return customName; 45 | } 46 | String name = GUtil.elvis(getBaseName(), "") + maybe(getBaseName(), getAppendix()); 47 | name += maybe(name, getVersion()); 48 | name += maybe(name, getClassifier()); 49 | name += GUtil.isTrue(getExtension()) ? "." + getExtension() : ""; 50 | return name; 51 | } 52 | 53 | /** 54 | * Sets the archive name. 55 | * 56 | * @param name the archive name. 57 | */ 58 | public void setArchiveName(String name) { 59 | customName = name; 60 | } 61 | 62 | private String maybe(String prefix, String value) { 63 | if (GUtil.isTrue(value)) { 64 | if (GUtil.isTrue(prefix)) { 65 | return String.format("-%s", value); 66 | } else { 67 | return value; 68 | } 69 | } 70 | return ""; 71 | } 72 | 73 | /** 74 | * The path where the archive is constructed. The path is simply the {@code destinationDir} plus the {@code archiveName}. 75 | * 76 | * @return a File object with the path to the archive 77 | */ 78 | @OutputFile 79 | public File getArchivePath() { 80 | return new File(getDestinationDir(), getArchiveName()); 81 | } 82 | 83 | /** 84 | * Returns the directory where the archive is generated into. 85 | * 86 | * @return the directory 87 | */ 88 | public File getDestinationDir() { 89 | return destinationDir; 90 | } 91 | 92 | public void setDestinationDir(File destinationDir) { 93 | this.destinationDir = destinationDir; 94 | } 95 | 96 | /** 97 | * Returns the base name of the archive. 98 | * 99 | * @return the base name. 100 | */ 101 | public String getBaseName() { 102 | return baseName; 103 | } 104 | 105 | public void setBaseName(String baseName) { 106 | this.baseName = baseName; 107 | } 108 | 109 | /** 110 | * Returns the appendix part of the archive name, if any. 111 | * 112 | * @return the appendix. May be null 113 | */ 114 | public String getAppendix() { 115 | return appendix; 116 | } 117 | 118 | public void setAppendix(String appendix) { 119 | this.appendix = appendix; 120 | } 121 | 122 | /** 123 | * Returns the version part of the archive name, if any. 124 | * 125 | * @return the version. May be null. 126 | */ 127 | public String getVersion() { 128 | return version; 129 | } 130 | 131 | public void setVersion(String version) { 132 | this.version = version; 133 | } 134 | 135 | /** 136 | * Returns the extension part of the archive name. 137 | */ 138 | public String getExtension() { 139 | return extension; 140 | } 141 | 142 | public void setExtension(String extension) { 143 | this.extension = extension; 144 | } 145 | 146 | /** 147 | * Returns the classifier part of the archive name, if any. 148 | * 149 | * @return The classifier. May be null. 150 | */ 151 | public String getClassifier() { 152 | return classifier; 153 | } 154 | 155 | public void setClassifier(String classifier) { 156 | this.classifier = classifier; 157 | } 158 | 159 | } 160 | -------------------------------------------------------------------------------- /src/main/groovy/nebula/core/GradleHelper.groovy: -------------------------------------------------------------------------------- 1 | package nebula.core 2 | 3 | import com.google.common.io.Files 4 | import org.apache.commons.lang3.reflect.FieldUtils 5 | import org.gradle.api.DomainObjectSet 6 | import org.gradle.api.Project 7 | import org.gradle.api.ProjectEvaluationListener 8 | import org.gradle.api.artifacts.Configuration 9 | import org.gradle.api.artifacts.Dependency 10 | import org.gradle.api.internal.artifacts.configurations.DefaultConfiguration 11 | import org.gradle.api.internal.artifacts.configurations.DetachedConfigurationsProvider 12 | import org.gradle.api.internal.artifacts.ivyservice.DefaultConfigurationResolver 13 | import org.gradle.api.internal.artifacts.ivyservice.resolutionstrategy.DefaultResolutionStrategy 14 | import org.gradle.api.internal.project.ProjectInternal 15 | import org.gradle.internal.dispatch.Dispatch 16 | import org.gradle.internal.dispatch.MethodInvocation 17 | import org.gradle.internal.event.BroadcastDispatch 18 | import org.gradle.listener.ClosureBackedMethodInvocationDispatch 19 | 20 | /** 21 | * Utility methods to dive into Gradle internals, if needed. 22 | */ 23 | class GradleHelper { 24 | def ProjectInternal project 25 | 26 | GradleHelper(ProjectInternal project) { 27 | this.project = project 28 | } 29 | 30 | def static BroadcastDispatch getProjectEvaluationListeners(ProjectInternal project) { 31 | new GradleHelper(project).getProjectEvaluationListeners() 32 | } 33 | 34 | def BroadcastDispatch getProjectEvaluationListeners() { 35 | ProjectEvaluationListener listener = project.getProjectEvaluationBroadcaster(); 36 | 37 | def /* org.gradle.messaging.dispatch.ProxyDispatchAdapter.DispatchingInvocationHandler */ h = ((java.lang.reflect.Proxy) listener).h 38 | BroadcastDispatch dispatcher = h.dispatch 39 | return dispatcher 40 | } 41 | 42 | def static beforeEvaluate(Project project, Closure beforeEvaluateClosure) { 43 | new GradleHelper(project).beforeEvaluate(beforeEvaluateClosure) 44 | } 45 | 46 | def beforeEvaluate(Closure beforeEvaluateClosure) { 47 | BroadcastDispatch broadcast = getProjectEvaluationListeners( (ProjectInternal) project) 48 | 49 | final String methodName = 'afterEvaluate' 50 | Dispatch invocation = new ClosureBackedMethodInvocationDispatch(methodName, beforeEvaluateClosure) 51 | 52 | Map> prependedHandlers = new LinkedHashMap>(); 53 | prependedHandlers.put(invocation, invocation); 54 | prependedHandlers.putAll( broadcast.handlers ) 55 | 56 | broadcast.handlers.clear() 57 | broadcast.handlers.putAll(prependedHandlers) 58 | } 59 | 60 | def getTempDir(String taskBaseName) { 61 | File tmpDir = new File(project.getBuildDir(), taskBaseName) 62 | Files.createParentDirs(tmpDir); 63 | tmpDir.mkdirs() 64 | return tmpDir 65 | } 66 | 67 | /** 68 | * Dig deeper into project object to see if group has been set. Wrap in beforeEvaluate if want to run later. 69 | * @param defaultGroup 70 | */ 71 | def addDefaultGroup(String defaultGroup) { 72 | // Getting on AbstractProject will always feed out some group name if we're not at the root project, so look 73 | // past it's getGroup() method to see what's really set 74 | def directGroupName = FieldUtils.readField(project, 'group', true) 75 | if (!directGroupName) { 76 | project.logger.debug("Defaulting group to '${defaultGroup}', because direct group name ('${directGroupName}') is empty") 77 | project.group = defaultGroup 78 | } 79 | project.logger.info("Using group of ${project.group}") 80 | } 81 | 82 | /** 83 | * TODO Not done. 84 | * 85 | * Create a detached Configuration which uses it's own resolvers, instead of inheriting them from the project 86 | * 87 | * @param templateResolver 88 | * @param dependencies 89 | * @return 90 | */ 91 | public Configuration detachedConfiguration(DefaultConfigurationResolver templateResolver, Dependency... dependencies) { 92 | String name = DETACHED_CONFIGURATION_DEFAULT_NAME + detachedConfigurationDefaultNameCounter++; 93 | DetachedConfigurationsProvider detachedConfigurationsProvider = new DetachedConfigurationsProvider(); 94 | DefaultConfiguration detachedConfiguration = new DefaultConfiguration( 95 | name, name, detachedConfigurationsProvider, templateResolver.resolver, 96 | templateResolver.listenerManager, templateResolver.dependencyMetaDataProvider, new DefaultResolutionStrategy()); 97 | DomainObjectSet detachedDependencies = detachedConfiguration.getDependencies(); 98 | for (Dependency dependency : dependencies) { 99 | detachedDependencies.add(dependency.copy()); 100 | } 101 | detachedConfigurationsProvider.setTheOnlyConfiguration(detachedConfiguration); 102 | return detachedConfiguration; 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 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 26 | 27 | APP_NAME="Gradle" 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="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn ( ) { 37 | echo "$*" 38 | } 39 | 40 | die ( ) { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save ( ) { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | 204 | --------------------------------------------------------------------------------