Skip to content

Commit

Permalink
Move int-ui modules to the top level
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Sep 20, 2023
1 parent 1a97366 commit 29bff14
Show file tree
Hide file tree
Showing 82 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ val sarif: Configuration by configurations.creating {
dependencies {
sarif(projects.core)
sarif(projects.samples.standalone)
sarif(projects.themes.intUi.intUiStandalone)
sarif(projects.themes.intUi.intUiCore)
sarif(projects.intUi.intUiStandalone)
sarif(projects.intUi.intUiCore)
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion ide-laf-bridge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

dependencies {
api(projects.themes.intUi.intUiStandalone)
api(projects.intUi.intUiStandalone)
compileOnly(libs.bundles.idea)

testImplementation(compose.desktop.uiTestJUnit4)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {
}

dependencies {
api(projects.themes.intUi.intUiCore)
api(projects.intUi.intUiCore)
}
1 change: 0 additions & 1 deletion samples/ide-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ repositories {

dependencies {
implementation(compose.desktop.currentOs)
implementation(projects.themes.intUi.intUiStandalone)
implementation(projects.ideLafBridge)
}
2 changes: 1 addition & 1 deletion samples/standalone/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

dependencies {
implementation(projects.themes.intUi.intUiStandalone)
implementation(projects.intUi.intUiStandalone)
}

compose.desktop {
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ include(
":ide-laf-bridge",
":samples:standalone",
":samples:ide-plugin",
":themes:int-ui:int-ui-core",
":themes:int-ui:int-ui-standalone",
":int-ui:int-ui-core",
":int-ui:int-ui-standalone",
)

0 comments on commit 29bff14

Please sign in to comment.