Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Feb 10, 2025
1 parent d126812 commit 4c50492
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions impexp-client-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ distributions {
from "$rootDir/resources/license/APACHE-2.0.txt"
from processLicense
}
from(file("$buildDir/tmp/dir")) {
mkdir "$buildDir/tmp/dir/plugins"
mkdir "$buildDir/tmp/dir/ade-extensions"
from(file("$projectDir/build/tmp/dir")) {
mkdir "$projectDir/build/tmp/dir/plugins"
mkdir "$projectDir/build/tmp/dir/ade-extensions"
}
}
}
Expand Down
18 changes: 11 additions & 7 deletions impexp-client-gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ def flatlaf_version = '3.5.4'

dependencies {
api project(':impexp-client-cli')
api "com.formdev:flatlaf:$flatlaf_version"
api "com.formdev:flatlaf-extras:$flatlaf_version"
api "com.formdev:flatlaf-swingx:$flatlaf_version"
api "com.fifesoft:rsyntaxtextarea:3.5.4"
api 'com.github.vertical-blank:sql-formatter:2.0.5'
api "com.formdev:flatlaf:$flatlaf_version:no-natives"
api("com.formdev:flatlaf-extras:$flatlaf_version") {
exclude group: 'com.formdev', module: 'flatlaf'
}
api("com.formdev:flatlaf-swingx:$flatlaf_version") {
exclude group: 'com.formdev', module: 'flatlaf'
}
api('org.citydb:swingx-ws:1.1.6') {
transitive = false
}
Expand Down Expand Up @@ -66,7 +70,7 @@ task processReadme(type: Copy) {
docUrl: project.docUrl
])
}
into "$buildDir/tmp/doc"
into "$projectDir/build/tmp/doc"
}

javadoc {
Expand Down Expand Up @@ -130,9 +134,9 @@ distributions {
from "$rootDir/resources/license/APACHE-2.0.txt"
from processLicense
}
from(file("$buildDir/tmp/dir")) {
mkdir "$buildDir/tmp/dir/plugins"
mkdir "$buildDir/tmp/dir/ade-extensions"
from(file("$projectDir/build/tmp/dir")) {
mkdir "$projectDir/build/tmp/dir/plugins"
mkdir "$projectDir/build/tmp/dir/ade-extensions"
}
}
}
Expand Down

0 comments on commit 4c50492

Please sign in to comment.