Skip to content

Commit

Permalink
🚀 :: (#2) Update to 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
smoothbear committed May 27, 2021
1 parent f1d3490 commit ddec5db
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'io.github.team-xquare'
version '0.0.8'
version '0.0.9'

repositories {
mavenCentral()
Expand All @@ -29,26 +29,24 @@ test {

task javadocJar(type: Jar) {
archiveClassifier.set('javadoc')
from javadoc
from javadoc.destinationDir
}

task sourcesJar(type: Jar) {
archiveClassifier.set('sources')
from sourceSets.main.allSource
}

artifacts {
archives javadocJar, sourcesJar
}

publishing {
publications {
maven(MavenPublication) {
groupId = 'io.github.team-xquare'
artifactId = 'utils'
version = '0.0.8'
version = '0.0.9'

from components.java
artifact sourcesJar
artifact javadocJar
}
}
repositories {
Expand Down

0 comments on commit ddec5db

Please sign in to comment.