aboutsummaryrefslogtreecommitdiff
path: root/bigtop-data-generators/bigtop-name-generator/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'bigtop-data-generators/bigtop-name-generator/build.gradle')
-rw-r--r--bigtop-data-generators/bigtop-name-generator/build.gradle50
1 files changed, 11 insertions, 39 deletions
diff --git a/bigtop-data-generators/bigtop-name-generator/build.gradle b/bigtop-data-generators/bigtop-name-generator/build.gradle
index 0bff824f..133dc931 100644
--- a/bigtop-data-generators/bigtop-name-generator/build.gradle
+++ b/bigtop-data-generators/bigtop-name-generator/build.gradle
@@ -13,51 +13,23 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-apply plugin: 'eclipse'
-apply plugin: 'groovy'
-apply plugin: 'java'
-apply plugin: 'maven'
-group = 'org.apache.bigtop'
-version = '1.1.0-SNAPSHOT'
jar {
-
- from {
- configurations.runtime.collect {
- it.isDirectory() ? it : zipTree(it)
- }
- }
-
- manifest {
- attributes 'Title': 'BigTop Name Generator', 'Version': version
+ from {
+ configurations.runtime.collect {
+ it.isDirectory() ? it : zipTree(it)
}
-}
-
-repositories {
- mavenLocal()
- mavenCentral()
-}
-
-test {
- // show standard out and error on console
- testLogging.showStandardStreams = true
-
- // listen to events in the test execution lifecycle
- beforeTest { descriptor ->
- logger.lifecycle("Running test: " + descriptor)
- }
-
- // listen to standard out and standard error of the test JVM(s)
- onOutput { descriptor, event ->
- logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message )
- }
+ }
+ manifest {
+ attributes 'Title': 'BigTop Name Generator', 'Version': version
+ }
}
dependencies {
- compile 'com.google.guava:guava:18.0'
- compile 'org.apache.commons:commons-lang3:3.4'
- compile project(":bigtop-samplers")
+ compile 'com.google.guava:guava:18.0'
+ compile 'org.apache.commons:commons-lang3:3.4'
+ compile project(":bigtop-samplers")
- testCompile 'junit:junit:4.+'
+ testCompile 'junit:junit:4.+'
}