File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,13 @@ buildscript {
1818}
1919
2020group ' com.github.koresframework'
21- version ' 4.1.9 .bytecode.1'
21+ version ' 4.1.10 .bytecode.1'
2222
2323apply from : project(" :Kores" ). file(" gradle/common.gradle" )
2424
25+ // Publish
26+ apply plugin : ' maven-publish'
27+
2528def GITHUB_USERNAME = project. findProperty(" USERNAME" ) ?: System . getenv(" USERNAME" )
2629def GITHUB_PAT = project. findProperty(" TOKEN" ) ?: System . getenv(" TOKEN" )
2730
@@ -72,6 +75,14 @@ tasks.dokkaGfm.configure {
7275 enabled = false
7376}
7477
78+ allprojects {
79+ tasks. whenTaskAdded { task ->
80+ if (task. name. contains(" dokkaGfm" )) {
81+ task. enabled = false
82+ }
83+ }
84+ }
85+
7586shadowJar {
7687 dependencies {
7788 include(project(" :Kores" ))
@@ -97,9 +108,11 @@ publishing {
97108 }
98109 }
99110 }
111+
100112 publications {
101113 maven(MavenPublication ) {
102114 artifactId ' kores-bytecodewriter'
115+ from components. kotlin
103116
104117 artifact sourcesJar
105118 }
You can’t perform that action at this time.
0 commit comments