Skip to content

Commit

Permalink
Rename Maven artifact koap to koap-core (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
twyatt authored Jul 8, 2024
1 parent ee75dea commit 761e085
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ plugins {
}

allprojects {
group = "com.juul.koap"

repositories {
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
Expand Down Expand Up @@ -71,15 +73,15 @@ task<Copy>("assembleGitHubPages") {
description = "Generates static web site for GitHub Pages."
group = "Build"

dependsOn(":webapp:browserDistribution", ":koap:dokkaHtml")
dependsOn(":webapp:browserDistribution", ":koap-core:dokkaHtml")

into("$buildDir/gh-pages")
from("${project(":webapp").buildDir}/dist/js/productionExecutable") {
include("**")
}

into("docs") {
from("${project(":koap").buildDir}/dokka/html") {
from("${project(":koap-core").buildDir}/dokka/html") {
include("**")
}
}
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true

GROUP=com.juul.koap
VERSION_NAME=unspecified

POM_NAME=KoAP
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion koap/gradle.properties

This file was deleted.

4 changes: 3 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
rootProject.name = "koap"

pluginManagement {
repositories {
gradlePluginPortal()
}
}

include(
":koap",
":koap-core",
":webapp",
)
2 changes: 1 addition & 1 deletion webapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kotlin {
sourceSets {
val main by getting {
dependencies {
implementation(project(":koap"))
implementation(project(":koap-core"))
implementation(libs.kotlinx.coroutines.js)
implementation(libs.kotlinx.serialization.json)
implementation(libs.okio.js)
Expand Down

0 comments on commit 761e085

Please sign in to comment.