-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·48 lines (35 loc) · 1011 Bytes
/
build.gradle
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
37
38
39
40
41
42
43
44
45
46
47
48
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin:'application'
sourceCompatibility = 1.7
version = '1.1'
mainClassName = "au.net.asoftware.metamovie.Main"
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.6'
//groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.8.6'
compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.5.2'
compile 'com.google.code.gson:gson:2.2.2'
}
test {
systemProperties 'property': 'value'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
jar {
manifest {
attributes 'Implementation-Title': 'MetaMovie - Generate Boxee Compatable Directory Structure & NFO File', 'Implementation-Version': version
attributes 'Main-Class': mainClassName
//def manifestClasspath = configurations.compile.collect { '../lib/' + it.getName() }.join(' ')
//attributes 'Class-Path': manifestClasspath
}
}
defaultTasks 'run'