summaryrefslogblamecommitdiff
path: root/build.gradle
blob: e96476a7cac31bb95a5a4642912c0a088f8c6e5b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                 
                                      
                  
 
                                                           
                                                
 
             
                            


             
                             
 
                      
                                                                                                                     









                                                                                               


                                                                 


                                                                   
 


                              
 
description = 'String metrics and phonetic algorithms for Scala.'
group = 'com.rockymadden.stringmetric'
version = '0.22.4'

ext.scm = 'scm:git@github.com:rockymadden/stringmetric.git'
ext.url = 'http://rockymadden.com/stringmetric/'

allprojects {
	apply plugin: 'idea'
}

subprojects {
	apply plugin: 'scala'

	compileScala {
		compileScala.scalaCompileOptions.additionalParameters = ['-target:jvm-1.6', '–Xdisable-assertions']
	}

	compileTestScala {
		compileTestScala.scalaCompileOptions.additionalParameters = ['-target:jvm-1.6']
	}

	dependencies {
		compile 'org.scala-lang:scala-compiler:2.10.0'
		compile 'org.scala-lang:scala-library:2.10.0'

		scalaTools 'org.scala-lang:scala-compiler:2.10.0'
		scalaTools 'org.scala-lang:scala-library:2.10.0'

		testCompile 'junit:junit:4.11'
		testCompile 'org.scalatest:scalatest_2.10.0:2.0.M5'
	}

	repositories {
		mavenCentral()
	}
}