Skip to content

Commit

Permalink
Using JavaExec to run demos. Not yet working.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhale committed Dec 3, 2015
1 parent e82aadb commit 33a26e9
Show file tree
Hide file tree
Showing 53 changed files with 13 additions and 112,010 deletions.
4 changes: 3 additions & 1 deletion build.gradle
@@ -1,6 +1,8 @@
defaultTasks ':core:jar'

// for root project, as well as subprojects
allprojects {
defaultTasks 'jar'
// nothing here, yet
}

// for subprojects only
Expand Down
146 changes: 0 additions & 146 deletions build.xml

This file was deleted.

11 changes: 9 additions & 2 deletions core/build.gradle
@@ -1,6 +1,8 @@
apply plugin: 'java-library-distribution'

description = 'Mines Java Toolkit'

apply plugin: 'java-library-distribution'
defaultTasks 'jar'

jar {
baseName = 'edu_mines_jtk'
Expand All @@ -10,7 +12,7 @@ jar {
}

dependencies {
compile fileTree('../libs') // jars provided with the Mines JTK
compile fileTree("$rootDir/libs")
testCompile 'junit:junit:4+'
}

Expand All @@ -23,3 +25,8 @@ distributions {
javadoc {
title = project.description
}

task deps(type: Sync) {
from configurations.runtime
into "$buildDir/deps"
}

0 comments on commit 33a26e9

Please sign in to comment.