Last active
December 15, 2015 08:18
-
-
Save oluies/5229484 to your computer and use it in GitHub Desktop.
gradle build script for scalascriptengine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'scala' | |
group = 'com.googlecode.scalascriptengine' | |
version = '1.3.1-2.10.0' | |
description = """scalascriptengine""" | |
tasks.withType(ScalaCompile) { | |
scalaCompileOptions.useAnt = false | |
} | |
compileScala { | |
scalaCompileOptions.useCompileDaemon = true | |
// optionally specify host and port of the daemon: | |
scalaCompileOptions.daemonServer = "localhost:4243" | |
} | |
configurations.all { | |
} | |
repositories { | |
mavenCentral() | |
mavenRepo url: "http://oss.sonatype.org/content/repositories/releases/" | |
mavenRepo url: "https://oss.sonatype.org/content/repositories/snapshots" | |
mavenRepo url: "http://repo.maven.apache.org/maven2" | |
} | |
dependencies { | |
scalaTools "org.scala-lang:scala-compiler:2.10.0" | |
compile "org.scala-lang:scala-library:2.10.0" | |
compile "org.scala-lang:scala-compiler:2.10.0" | |
compile group: 'org.scala-tools.time', name: 'time_2.9.1', version:'0.5' | |
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.6.4' | |
compile group: 'com.googlecode.scalaconcurrency', name: 'scalaconcurrency', version:'0.8.1-2.10.0' | |
compile group: 'com.googlecode.classgenerator', name: 'classgenerator', version:'0.6.7-2.10.0' | |
testCompile group: 'junit', name: 'junit', version:'4.10' | |
testCompile group: 'commons-io', name: 'commons-io', version:'2.1' | |
testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.0.0' | |
testCompile group: 'org.scalatest', name: 'scalatest_2.10.0', version:'2.0.M5' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment