Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
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.
81 changes: 11 additions & 70 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,20 @@
// 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' }
}
apply from: file('gradle/buildscript.gradle'), to: buildscript
plugins {
id 'nebula.netflixoss' version '2.2.9'
}

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

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')
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name

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

group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project

repositories {
jcenter()
}

dependencies {
compile 'org.slf4j:slf4j-api:1.7.2'
compile 'io.netty:netty:3.6.1.Final'
Expand Down Expand Up @@ -61,53 +52,3 @@ subprojects {
runtime 'org.apache.maven.plugins:maven-antrun-plugin:1.6'
}
}

project(':rss-core') {
apply plugin: 'java'
dependencies {
compile 'com.netflix.netflix-commons:netflix-statistics:0.1.1'
}
}

project(':rss-middletier') {
apply plugin: 'java'

dependencies {
compile project(':rss-core')
compile 'org.apache.httpcomponents:httpclient:4.1.2'
compile 'com.netflix.astyanax:astyanax:1.56.16'
compile 'asm:asm-all:3.2'
compile 'commons-io:commons-io:2.4'
compile 'commons-configuration:commons-configuration:1.9'
compile 'com.sun.jersey:jersey-server:1.9.1'
}

jar {
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
manifest { attributes 'Main-Class': 'com.netflix.recipes.rss.server.MiddleTierServer' }
}
}

project(':rss-edge') {
apply plugin: 'java'

dependencies {
compile project(':rss-core')
compile 'com.amazonaws:aws-java-sdk:1.3.27'
compile 'commons-io:commons-io:2.4'
compile 'org.json:json:20090211'
}

jar {
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
manifest { attributes 'Main-Class': 'com.netflix.recipes.rss.server.EdgeServer' }
}
}
13 changes: 0 additions & 13 deletions codequality/HEADER

This file was deleted.

188 changes: 0 additions & 188 deletions codequality/checkstyle.xml

This file was deleted.

1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
version=0.1.0-SNAPSHOT
11 changes: 0 additions & 11 deletions gradle/buildscript.gradle

This file was deleted.

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

This file was deleted.

Loading