Skip to content

Commit

Permalink
feat(release): added jitpack definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Roverr committed May 13, 2022
1 parent 21ed6ad commit e654b18
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 4 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
jdk:
- openjdk11
before_install:
- ./scripts/prepareJitpackEnvironment.sh
17 changes: 15 additions & 2 deletions kotlin-luhn/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,24 @@ android {
}

dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'io.paylike'
artifactId = 'luhn'
version = '1.0'
}
}
}
}

0 comments on commit e654b18

Please sign in to comment.