Skip to content

Commit

Permalink
🔖 runningdata 모듈 릴리즈 세팅
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghanJu committed Dec 8, 2022
1 parent 6ad645e commit 06440fa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
2 changes: 2 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jdk:
- openjdk11
2 changes: 1 addition & 1 deletion presentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ dependencies {

// Glide
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
kapt "com.github.bumptech.glide:compiler:$glideVersion"

// composeBom
def composeBom = platform("androidx.compose:compose-bom:2022.10.00")
Expand Down
28 changes: 24 additions & 4 deletions runningdata/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id "com.android.library"
id "org.jetbrains.kotlin.android"
id "maven-publish"
}

android {
Expand All @@ -22,11 +23,17 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}
}

Expand All @@ -38,4 +45,17 @@ dependencies {
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$junitUiVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoCoreVersion"
}
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = "com.github.boostcampwm-2022"
artifactId = "mogarkrun-running"
version = "1.0.0"
}
}
}
}

0 comments on commit 06440fa

Please sign in to comment.