Skip to content

Commit

Permalink
4.0.5.base.1: Method Not Allowed Edition
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanxD committed Aug 12, 2021
1 parent 214b8aa commit 7414717
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ buildscript {
}

group 'com.github.jonathanxd'
version '4.0.5.base'
version '4.0.5.base.1'

apply from: 'gradle/common.gradle'
19 changes: 19 additions & 0 deletions gradle/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ apply plugin: 'org.jetbrains.dokka'
apply plugin: 'license'
apply plugin: 'com.github.johnrengelman.shadow'

// Publish
apply plugin: 'maven-publish'

license {
header rootProject.file("LICENSE_HEADER")
}
Expand Down Expand Up @@ -134,3 +137,19 @@ license {
kt = 'SLASHSTAR_STYLE'
}
}

publishing {
repositories {
maven {
// change to point to your repo, e.g. http://my.org/repo
url = "$buildDir/repo"
}
}
publications {
maven(MavenPublication) {
from components.kotlin

artifact sourcesJar
}
}
}

0 comments on commit 7414717

Please sign in to comment.