File tree 2 files changed +32
-2
lines changed
2 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,19 @@ apply plugin: 'kotlin-android'
3
3
apply plugin : ' kotlin-parcelize'
4
4
apply plugin : " org.jlleitschuh.gradle.ktlint"
5
5
6
+ // start - do not modify this if your project is on github
7
+ project. ext {
8
+ mavDevelopers = [(github_username): (maintainer)]
9
+ mavSiteUrl = " https://github.com/${ github_username} /${ github_repository_name} "
10
+ mavGitUrl = mavSiteUrl + ' .git'
11
+ bugTrackerUrl = mavSiteUrl + ' /issues/'
12
+ mavProjectName = " android-upload-service-okhttp"
13
+ mavLibraryLicenses = [" Apache-2.0" : ' http://www.apache.org/licenses/LICENSE-2.0.txt' ]
14
+ mavLibraryDescription = " OkHttp stack implementation for Android Upload Service."
15
+ mavVersion = library_version
16
+ }
17
+ // end - do not modify this if your project is on github
18
+
6
19
android {
7
20
namespace " net.gotev.uploadservice.okhttp"
8
21
compileSdkVersion 34
@@ -58,4 +71,6 @@ dependencies {
58
71
// api "net.gotev:uploadservice:${version}"
59
72
// comment the previous line and uncomment the next line for development (it uses the local lib)
60
73
api project(' :uploadservice' )
61
- }
74
+ }
75
+
76
+ apply from : ' https://raw.githubusercontent.com/sky-uk/gradle-maven-plugin/master/gradle-mavenizer.gradle'
Original file line number Diff line number Diff line change @@ -4,6 +4,19 @@ apply plugin: 'kotlin-parcelize'
4
4
apply plugin : " org.jlleitschuh.gradle.ktlint"
5
5
apply plugin : ' kotlin-kapt'
6
6
7
+ // start - do not modify this if your project is on github
8
+ project. ext {
9
+ mavDevelopers = [(github_username): (maintainer)]
10
+ mavSiteUrl = " https://github.com/${ github_username} /${ github_repository_name} "
11
+ mavGitUrl = mavSiteUrl + ' .git'
12
+ bugTrackerUrl = mavSiteUrl + ' /issues/'
13
+ mavProjectName = " android-upload-service"
14
+ mavLibraryLicenses = [" Apache-2.0" : ' http://www.apache.org/licenses/LICENSE-2.0.txt' ]
15
+ mavLibraryDescription = " Easily upload files in the background with automatic Android Notification Center progress indication."
16
+ mavVersion = library_version
17
+ }
18
+ // end - do not modify this if your project is on github
19
+
7
20
android {
8
21
namespace " net.gotev.uploadservice"
9
22
@@ -69,4 +82,6 @@ dependencies {
69
82
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21"
70
83
71
84
implementation " androidx.work:work-runtime:2.9.0"
72
- }
85
+ }
86
+
87
+ apply from : ' https://raw.githubusercontent.com/sky-uk/gradle-maven-plugin/master/gradle-mavenizer.gradle'
You can’t perform that action at this time.
0 commit comments