aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: c3813f88177004a196045a18a0a73ad15ac080be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
group = "org.anarres"

buildscript {
    apply from: file('gradle/buildscript.gradle'), to: buildscript 
}

apply from: file('gradle/convention.gradle')
apply from: file('gradle/github.gradle')
apply from: file('gradle/nexus.gradle')
apply from: file('gradle/check.gradle')
apply from: file('gradle/license.gradle')

apply plugin: 'application'
apply plugin: 'velocity'

dependencies {
	// compile 'gnu.getopt:java-getopt:1.0.13'
	compile 'net.sf.jopt-simple:jopt-simple:4.7'
	compile 'org.apache.ant:ant:1.7.0'

	runtime 'org.slf4j:slf4j-simple:1.7.7'

	testCompile 'com.google.guava:guava:18.0'
}

velocity {
	def p = project
	Map m = [
		version: project.version
	]
	context m
}

mainClassName = "org.anarres.cpp.Main"