Subversion Repositories DevTools

Rev

Rev 6914 | Rev 7034 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6914 Rev 7033
Line 37... Line 37...
37
dependencies {
37
dependencies {
38
    // Main Dependencies
38
    // Main Dependencies
39
    //compile jats('interface')
39
    //compile jats('interface')
40
    compile jats('apache-ant')
40
    compile jats('apache-ant')
41
    compile jats('javaxmail')
41
    compile jats('javaxmail')
42
    compile jats('log4j')
42
    //compile jats('log4j')
43
    compile jats('ojdbc')
43
    compile jats('ojdbc')
44
    compile jats('j2ssh-maverick')
44
    compile jats('j2ssh-maverick')
-
 
45
    implementation 'org.slf4j:slf4j-api:1.7+'
45
 
46
 
46
    compile jats('junit')
47
    compile jats('junit')
47
 
48
 
48
	// Specify libs to be embedded into the main jar file
49
	// Specify libs to be embedded into the main jar file
49
	runTimeLibs 'apache-ant:ant'
50
	runTimeLibs 'apache-ant:ant'
50
	runTimeLibs 'apache-ant:ant-launcher'
51
	runTimeLibs 'apache-ant:ant-launcher'
51
	runTimeLibs 'javaxmail:mail'
52
	runTimeLibs 'javaxmail:mail'
52
	runTimeLibs 'ojdbc:ojdbc6' 
53
	runTimeLibs 'ojdbc:ojdbc6' 
53
	runTimeLibs 'log4j:log4j-1.2.14'
54
	runTimeLibs 'log4j:log4j:1.2.17+'
-
 
55
	runTimeLibs 'org.slf4j:slf4j-api:1.7+'
-
 
56
	runTimeLibs 'org.slf4j:slf4j-log4j12:1.7+'
54
	runTimeLibs 'j2ssh-maverick:j2ssh-maverick-1.5.2'
57
	runTimeLibs 'j2ssh-maverick:j2ssh-maverick-1.5.2'
55
	runTimeLibs 'j2ssh-maverick:jzlib-1.1.3'
58
	runTimeLibs 'j2ssh-maverick:jzlib-1.1.3'
56
	runTimeLibs 'j2ssh-maverick:oro-2.0.8'
59
	runTimeLibs 'j2ssh-maverick:oro-2.0.8'
57
 
60
 
58
}
61
}
Line 81... Line 84...
81
	}
84
	}
82
	manifest {
85
	manifest {
83
		attributes (
86
		attributes (
84
			'Main-Class': 'com.erggroup.buildtool.daemon.BuildDaemon',
87
			'Main-Class': 'com.erggroup.buildtool.daemon.BuildDaemon',
85
			'Implementation-Title' : 'com.erggroup.buildtool.abt',
88
			'Implementation-Title' : 'com.erggroup.buildtool.abt',
86
			'Class-Path' : 'utilitiesD.jar rippleEngineD.jar ant-abtD.jar smtpD.jar ant.jar ant-launcher.jar mail.jar ojdbc6.jar log4j-1.2.14.jar j2ssh-maverick-1.5.2.jar jzlib-1.1.3.jar oro-2.0.8.jar',
89
			'Class-Path' : '. utilitiesD.jar rippleEngineD.jar ant-abtD.jar smtpD.jar ant.jar ant-launcher.jar slf4j-api-1.7.26.jar slf4j-log4j12-1.7.26.jar log4j-1.2.17.jar mail.jar ojdbc6.jar j2ssh-maverick-1.5.2.jar jzlib-1.1.3.jar oro-2.0.8.jar'
87
		)
90
		)
88
	}
91
	}
89
}
92
}
90
 
-
 
91
task escrow(type: Jar) {
93
task escrow(type: Jar) {
92
	baseName = 'escrowD'
94
	baseName = 'escrowD'
93
	from(sourceSets.main.output) {
95
	from(sourceSets.main.output) {
94
		include 'com/erggroup/buildtool/escrow/**'
96
		include 'com/erggroup/buildtool/escrow/**'
95
	}
97
	}
96
	manifest {
98
	manifest {
97
		attributes (
99
		attributes (
98
			'Implementation-Title' : 'com.erggroup.buildtool.escrow',
100
			'Implementation-Title' : 'com.erggroup.buildtool.escrow',
99
			'Main-Class': 'com.erggroup.buildtool.escrow.ESCROWBuild',
101
			'Main-Class': 'com.erggroup.buildtool.escrow.ESCROWBuild',
100
			'Class-Path': 'utilitiesD.jar rippleEngineD.jar ojdbc6.jar log4j-1.2.14.jar'
102
			'Class-Path': '. utilitiesD.jar rippleEngineD.jar ojdbc6.jar slf4j-api-1.7.26.jar slf4j-log4j12-1.7.26.jar log4j-1.2.17.jar'
101
		)
103
		)
102
	}
104
	}
103
}
105
}
104
 
106
 
105
task indef(type: Jar) {
107
task indef(type: Jar) {