Subversion Repositories DevTools

Rev

Rev 7189 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7189 Rev 7489
Line 63... Line 63...
63
//  This project builds bunch of jars and does not need to project jar
63
//  This project builds bunch of jars and does not need to project jar
64
jar.enabled = false
64
jar.enabled = false
65
 
65
 
66
// Build individual jars
66
// Build individual jars
67
task ant_abt(type: Jar) {
67
task ant_abt(type: Jar) {
68
	baseName = 'ant-abtD'
68
	archiveBaseName = 'ant-abtD'
-
 
69
	archiveVersion = ''
69
	from(sourceSets.main.output) {
70
	from(sourceSets.main.output) {
70
		include 'com/erggroup/buildtool/abt/**'
71
		include 'com/erggroup/buildtool/abt/**'
71
	}
72
	}
72
	 manifest {
73
	 manifest {
73
		attributes (
74
		attributes (
Line 75... Line 76...
75
		)
76
		)
76
	}
77
	}
77
}
78
}
78
 
79
 
79
task abtd(type: Jar) {
80
task abtd(type: Jar) {
80
	baseName = 'abtdD'
81
	archiveBaseName = 'abtdD'
-
 
82
	archiveVersion = ''
81
	from(sourceSets.main.output) {
83
	from(sourceSets.main.output) {
82
		include 'com/erggroup/buildtool/daemon/**'
84
		include 'com/erggroup/buildtool/daemon/**'
83
	}
85
	}
84
	manifest {
86
	manifest {
85
		attributes (
87
		attributes (
Line 88... Line 90...
88
			'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'
90
			'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'
89
		)
91
		)
90
	}
92
	}
91
}
93
}
92
task escrow(type: Jar) {
94
task escrow(type: Jar) {
93
	baseName = 'escrowD'
95
	archiveBaseName = 'escrowD'
-
 
96
	archiveVersion = ''
94
	from(sourceSets.main.output) {
97
	from(sourceSets.main.output) {
95
		include 'com/erggroup/buildtool/escrow/**'
98
		include 'com/erggroup/buildtool/escrow/**'
96
	}
99
	}
97
	manifest {
100
	manifest {
98
		attributes (
101
		attributes (
Line 102... Line 105...
102
		)
105
		)
103
	}
106
	}
104
}
107
}
105
 
108
 
106
task indef(type: Jar) {
109
task indef(type: Jar) {
107
	baseName = 'indefD'
110
	archiveBaseName = 'indefD'
-
 
111
	archiveVersion = ''
108
	from(sourceSets.main.output) {
112
	from(sourceSets.main.output) {
109
		include 'com/erggroup/buildtool/indef/**'
113
		include 'com/erggroup/buildtool/indef/**'
110
	}
114
	}
111
	manifest {
115
	manifest {
112
		attributes (
116
		attributes (
Line 116... Line 120...
116
		)
120
		)
117
	}
121
	}
118
}
122
}
119
 
123
 
120
task rippleEngine(type: Jar) {
124
task rippleEngine(type: Jar) {
121
	baseName = 'rippleEngineD'
125
	archiveBaseName = 'rippleEngineD'
-
 
126
	archiveVersion = ''
122
	from(sourceSets.main.output) {
127
	from(sourceSets.main.output) {
123
		include 'com/erggroup/buildtool/ripple/**'
128
		include 'com/erggroup/buildtool/ripple/**'
124
	}
129
	}
125
	manifest {
130
	manifest {
126
	}
131
	}
127
}
132
}
128
 
133
 
129
task smtp(type: Jar) {
134
task smtp(type: Jar) {
130
	baseName = 'smtpD'
135
	archiveBaseName = 'smtpD'
-
 
136
	archiveVersion = ''
131
	from(sourceSets.main.output) {
137
	from(sourceSets.main.output) {
132
		include 'com/erggroup/buildtool/smtp/**'
138
		include 'com/erggroup/buildtool/smtp/**'
133
	}
139
	}
134
	manifest {
140
	manifest {
135
		attributes (
141
		attributes (
Line 138... Line 144...
138
	}
144
	}
139
 
145
 
140
}
146
}
141
 
147
 
142
task utilities(type: Jar) {
148
task utilities(type: Jar) {
143
	baseName = 'utilitiesD'
149
	archiveBaseName = 'utilitiesD'
-
 
150
	archiveVersion = ''
144
	from(sourceSets.main.output) {
151
	from(sourceSets.main.output) {
145
		include 'com/erggroup/buildtool/utilities/**'
152
		include 'com/erggroup/buildtool/utilities/**'
146
	}
153
	}
147
	manifest {
154
	manifest {
148
		attributes (
155
		attributes (
Line 150... Line 157...
150
		)
157
		)
151
	}
158
	}
152
}
159
}
153
 
160
 
154
task config(type: Jar) {
161
task config(type: Jar) {
155
	baseName = 'configD'
162
	archiveBaseName = 'configD'
-
 
163
	archiveVersion = ''
156
	from(sourceSets.main.output) {
164
	from(sourceSets.main.output) {
157
		include 'com/erggroup/buildtool/util/**'
165
		include 'com/erggroup/buildtool/util/**'
158
	}
166
	}
159
	manifest {
167
	manifest {
160
		attributes (
168
		attributes (