Skip to content

Commit

Permalink
This diff removes the entire workspace-model project, including its…
Browse files Browse the repository at this point in the history
… Gradle build files, source code, and Gradle wrapper. In the `api` project, the dependency on the `workspace-model/lib` module is updated to point to a presumably pre-built JAR file in `../../workspace-model/lib/build/libs/lib.jar`, and the Gradle build task for `workspace-model` is updated to use a relative path from two levels up (`../../`). This suggests that `workspace-model` is being moved or separated into its own independent build process.
  • Loading branch information
cheroliv committed Dec 12, 2024
1 parent b3e56c6 commit 0aba723
Show file tree
Hide file tree
Showing 19 changed files with 2 additions and 1,734 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ dependencyManagement {
}

dependencies {
files("../workspace-model/lib/build/libs/lib.jar".run(::File).path).run(::implementation)
files("../../workspace-model/lib/build/libs/lib.jar".run(::File).path).run(::implementation)
// Kotlin
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.kotlin:kotlin-reflect")
Expand Down Expand Up @@ -187,7 +187,7 @@ configurations {

val buildWorkspaceModel: TaskProvider<GradleBuild> by tasks.registering(GradleBuild::class) {
group = "api"
dir = "../workspace-model/lib".run(::File)
dir = "../../workspace-model/lib".run(::File)
tasks = listOf("build") // Or whatever tasks produce the lib.jar
}
// Add a dependency on the buildWorkspaceModel task
Expand Down
12 changes: 0 additions & 12 deletions workspace-model/.gitattributes

This file was deleted.

8 changes: 0 additions & 8 deletions workspace-model/.gitignore

This file was deleted.

15 changes: 0 additions & 15 deletions workspace-model/gradle/libs.versions.toml

This file was deleted.

Binary file removed workspace-model/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 0 additions & 7 deletions workspace-model/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

252 changes: 0 additions & 252 deletions workspace-model/gradlew

This file was deleted.

Loading

0 comments on commit 0aba723

Please sign in to comment.