Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Maven artifact koap to koap-core #278

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
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
Loading