Skip to content

Commit

Permalink
added publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
wolpi committed Jul 30, 2023
1 parent 6172ca5 commit 10c0c37
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions primitiveFTPd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ repositories {
}

apply plugin: 'com.android.application'
apply plugin: 'maven-publish'
//apply plugin: 'android-cq'

android {
Expand Down Expand Up @@ -103,3 +104,23 @@ dependencies {
implementation 'org.bouncycastle:bcpg-jdk15on:1.70'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.70'
}

publishing {
publications {
maven(MavenPublication) {
groupId = 'org.primftpd'
artifactId = 'app'
version = 'latest'

artifact file('build/outputs/apk/debug/primitiveFTPd-debug.apk');
}
}
/*
//to debug publishing
repositories {
maven {
url = "file://$projectDir/deploy"
}
}
*/
}

0 comments on commit 10c0c37

Please sign in to comment.