Skip to content

Commit

Permalink
renaming to library
Browse files Browse the repository at this point in the history
(cherry picked from commit c459048)
  • Loading branch information
cdsap authored and gsmet committed Oct 23, 2024
1 parent 1c9483d commit cf6b2fe
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
dependencies {
implementation("io.quarkus:quarkus-rest")
implementation("io.quarkus:quarkus-arc")
implementation(enforcedPlatform(project(":lib")))
implementation(enforcedPlatform(project(":library")))
testImplementation("io.quarkus:quarkus-junit5")
testImplementation("io.rest-assured:rest-assured")
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
plugins {
`java-platform`
}

val quarkusPlatformGroupId: String by project
val quarkusPlatformArtifactId: String by project
val quarkusPlatformVersion: String by project

javaPlatform.allowDependencies()
dependencies{
api(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}"))
constraints{
api("org.assertj:assertj-core:3.26.3")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ pluginManagement {
}
}
rootProject.name='java-platform-with-eager-resolution-project'
include(":lib")
include(":library")

0 comments on commit cf6b2fe

Please sign in to comment.