Skip to content

Commit 48dd085

Browse files
committed
Revert changes to build.gradle used for local testing
1 parent 995a898 commit 48dd085

1 file changed

Lines changed: 1 addition & 21 deletions

File tree

build.gradle

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,8 @@ apply plugin: "io.freefair.lombok"
4141
apply plugin: "com.github.johnrengelman.shadow"
4242
apply plugin: "app.cash.licensee"
4343
apply plugin: "com.jaredsburrows.license"
44-
apply plugin: "application"
4544

4645

47-
application {
48-
mainClass = "org.polypheny.simpleclient.cli.Main"
49-
}
50-
5146
tasks.withType(JavaCompile).configureEach {
5247
options.encoding = "UTF-8"
5348
}
@@ -210,6 +205,7 @@ shadowJar {
210205
}
211206
}
212207
assemble.dependsOn shadowJar
208+
213209
artifacts {
214210
//archives jar // regular jar containing only the compiled source
215211
archives shadowJar // fat jar which additionally contains all dependencies
@@ -245,22 +241,6 @@ compileJava.dependsOn(copyPolyphenyOldJdbcDriver)
245241
compileJava.dependsOn(copyPolyphenyNewJdbcDriver)
246242

247243

248-
249-
/* ------------ Local testing config ------------ */
250-
processResources {
251-
dependsOn copyPolyphenyOldJdbcDriver, copyPolyphenyNewJdbcDriver
252-
from('libs/polyphenyJdbcDrivers') {
253-
rename { name -> name.replace('.jar', '.zip') }
254-
into 'libs/polyphenyJdbcDrivers'
255-
}
256-
}
257-
258-
run {
259-
dependsOn processResources
260-
}
261-
/* ---------------------------------------------- */
262-
263-
264244
/**
265245
* IntelliJ
266246
*/

0 commit comments

Comments
 (0)