Skip to content

Commit

Permalink
Dependency-Typ auf api(..) umgestellt
Browse files Browse the repository at this point in the history
  • Loading branch information
oboehm committed Sep 30, 2024
1 parent 0bf548e commit 849f27f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ asciidoctorj {
)
}

// ./gradlew publishToSonatype
// check https://oss.sonatype.org/content/repositories/snapshots/de/jfachwert/
// ./gradlew publishToSonatype -> check https://oss.sonatype.org/content/repositories/snapshots/de/jfachwert/
// ./gradlew publishToMavenLocal -> check local maven repo at ~/.m2/repository/de/jfachwert
nexusPublishing {
repositories {
sonatype {
Expand Down
22 changes: 11 additions & 11 deletions jfachwert/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ plugins {
}

dependencies {
implementation(project(":core"))
implementation(project(":bank"))
implementation(project(":formular"))
implementation(project(":math"))
implementation(project(":money"))
implementation(project(":med"))
implementation(project(":net"))
implementation(project(":post"))
implementation(project(":rechnung"))
implementation(project(":steuer"))
implementation(project(":zeit"))
api(project(":core"))
api(project(":bank"))
api(project(":formular"))
api(project(":math"))
api(project(":money"))
api(project(":med"))
api(project(":net"))
api(project(":post"))
api(project(":rechnung"))
api(project(":steuer"))
api(project(":zeit"))
}

description = "jFachwert"

0 comments on commit 849f27f

Please sign in to comment.