Skip to content

Commit

Permalink
0.1.2 (#8)
Browse files Browse the repository at this point in the history
* fix kotlin module.

* apply kotlin plugin.

* Update gradle.properties
  • Loading branch information
portlek authored Jun 9, 2024
1 parent a533c49 commit fb92b2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import com.vanniktech.maven.publish.JavadocJar
import com.vanniktech.maven.publish.MavenPublishPlugin
import com.vanniktech.maven.publish.SonatypeHost
import org.jetbrains.dokka.gradle.DokkaPlugin
Expand All @@ -7,6 +6,7 @@ plugins {
java
`maven-publish`
alias(libs.plugins.nexus)
alias(libs.plugins.kotlin) apply false
alias(libs.plugins.dokka) apply false
}

Expand All @@ -17,6 +17,7 @@ subprojects {
apply<MavenPublishPlugin>()
if (project.name.contains("kotlin")) {
apply<DokkaPlugin>()
apply(plugin = "org.jetbrains.kotlin.jvm")
}

repositories.mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=pubsub
group=net.infumia
version=0.1.1
version=0.1.2

org.gradle.parallel=true
4 changes: 4 additions & 0 deletions kotlin/protobuf/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
alias(libs.plugins.kotlin.serialization)
}

dependencies {
compileOnly(project(":common"))

Expand Down

0 comments on commit fb92b2f

Please sign in to comment.