This repository has been archived on 2015-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
stream/java/build.gradle

36 lines
917 B
Groovy

/*
* This build file was auto generated by running the Gradle 'init' task
* by 'fred' at '11/6/14 4:30 PM' with Gradle 2.1
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at http://gradle.org/docs/2.1/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'maven'
group = 'jsh'
version = '1.0-SNAPSHOT'
uploadArchives {
repositories {
mavenDeployer {
pom.artifactId = 'java-api'
}
}
}
// In this section you declare where to find the dependencies of your project
repositories {
jcenter()
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile 'com.google.code.gson:gson:2.3'
testCompile 'junit:junit:4.11'
}