Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Netflix oss build conversion #90

Open
wants to merge 2 commits into
base: 2.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added CHANGELOG.md
Empty file.
42 changes: 7 additions & 35 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,50 +1,22 @@
plugins {
id 'nebula.netflixoss' version '2.2.9'
}

// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name

buildscript {
repositories {
mavenLocal()
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.1.1'
}
apply from: file('gradle/buildscript.gradle'), to: buildscript
}

subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java'

allprojects {
repositories {
mavenLocal()
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
jcenter()
}
}

apply from: file('gradle/convention.gradle')
apply from: file('gradle/maven.gradle')
//apply from: file('gradle/check.gradle')
apply from: file('gradle/license.gradle')
apply from: file('gradle/release.gradle')

tasks.withType(Javadoc).each { task ->
task.enabled = false
}

subprojects {

group = "com.netflix.${githubProjectName}"

tasks.withType(Javadoc).each { task ->
task.enabled = false
}

sourceSets {
test {
java {
srcDir 'src/main/java'
}
}
}
}
13 changes: 0 additions & 13 deletions codequality/HEADER

This file was deleted.

11 changes: 0 additions & 11 deletions gradle/buildscript.gradle

This file was deleted.

26 changes: 0 additions & 26 deletions gradle/check.gradle

This file was deleted.

101 changes: 0 additions & 101 deletions gradle/convention.gradle

This file was deleted.

10 changes: 0 additions & 10 deletions gradle/license.gradle

This file was deleted.

70 changes: 0 additions & 70 deletions gradle/maven.gradle

This file was deleted.

1 change: 0 additions & 1 deletion gradle/netflix-oss.gradle

This file was deleted.

61 changes: 0 additions & 61 deletions gradle/release.gradle

This file was deleted.

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Aug 14 16:28:54 PDT 2012
#Mon Apr 13 17:12:12 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
7 changes: 6 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
rootProject.name='turbine'
include 'turbine-core', 'turbine-ext:turbine-discovery-eureka1', 'turbine-ext:turbine-discovery-eureka2'
include 'turbine-core'
include 'turbine-executable'
include 'turbine-discovery-eureka1'
include 'turbine-discovery-eureka1-executable'
include 'turbine-discovery-eureka2'
include 'turbine-discovery-eureka2-executable'
Loading