Skip to content

Commit

Permalink
mavenJava 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
WonJoongLee committed Feb 10, 2022
1 parent 9df71bf commit 0d04379
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
id 'maven-publish'
}

repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}

dependencies {
// Use the Kotlin JUnit integration.
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
}

publishing {
publications {
mavenJava(MavenPublication) {
from components.java

groupId = 'com.github.WonJoong'
artifactId = 'kodi'
version = '0.1.0'
}
}
}

0 comments on commit 0d04379

Please sign in to comment.