Skip to content

Commit 985e4d2

Browse files
committed
Add jitpack
1 parent 9290a28 commit 985e4d2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,29 @@ buildscript {
1313
repositories {
1414
google()
1515
mavenCentral()
16+
maven { url "https://jitpack.io" }
1617
}
1718
dependencies {
1819
classpath "com.android.tools.build:gradle:$agpVersion"
1920
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
2021
classpath "com.vanniktech:gradle-maven-publish-plugin:$mavenPublishVersion"
2122
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$kotlinVersion"
2223
}
24+
afterEvaluate {
25+
publishing {
26+
publications {
27+
release(MavenPublication) {
28+
groupId = 'com.github.omkar-tenkale'
29+
artifactId = 'ExplodingComposable'
30+
version = '1.0.0'
31+
}
32+
}
33+
}
34+
}
35+
}
36+
37+
plugins {
38+
id 'maven-publish'
2339
}
2440

2541
task clean(type: Delete) {

0 commit comments

Comments
 (0)