Skip to content

Commit

Permalink
related to vanniktech#722
Browse files Browse the repository at this point in the history
move api to separate module
  • Loading branch information
kellyrob99 committed Mar 8, 2024
1 parent 64444c7 commit 2f10bc9
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions central-portal/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
plugins {
id("shared")
}

dependencies {
kapt(libs.moshi.codegen)

implementation(libs.okhttp)
implementation(libs.moshi)
implementation(libs.retrofit)
implementation(libs.retrofit.converter.moshi)
}
3 changes: 3 additions & 0 deletions central-portal/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=central-portal
POM_NAME=Sonatype related APIs and tasks
POM_DESCRIPTION=APIs and tasks to help working with the Sonatype Central Portal
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ gradleEnterprise {

include(":plugin")
include(":nexus")
include(":central-portal")
includeBuild("build-logic")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

0 comments on commit 2f10bc9

Please sign in to comment.