Skip to content

Commit

Permalink
add publishing to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
seljabali committed Sep 5, 2021
1 parent ef7c1da commit cb7c7f3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ plugins {
id 'maven-publish'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'org.eljabali.sami.javatimefun'
artifactId = 'javatimefun'
version = '0.2'

group 'org.eljabali.sami.javatimefun'
version '0.1'
from components.java
}
}
}

repositories {
mavenCentral()
Expand Down

0 comments on commit cb7c7f3

Please sign in to comment.