Skip to content

Commit 6822c2f

Browse files
migrating to maven central soon
1 parent f7acf91 commit 6822c2f

File tree

5 files changed

+171
-5
lines changed

5 files changed

+171
-5
lines changed

build.gradle

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,39 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
32
buildscript {
43
repositories {
54
google()
6-
jcenter()
5+
mavenCentral()
6+
maven {
7+
url "https://plugins.gradle.org/m2/"
8+
}
79
}
810
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.1.1'
11+
classpath 'com.android.tools.build:gradle:7.3.1'
1012
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
13+
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
1114

1215
// NOTE: Do not place your application dependencies here; they belong
1316
// in the individual module build.gradle files
1417
}
1518
}
19+
apply plugin: 'io.github.gradle-nexus.publish-plugin'
1620

1721
allprojects {
1822
repositories {
1923
google()
20-
jcenter()
24+
mavenCentral()
2125
maven {
2226
url 'https://jitpack.io'
2327
}
2428
}
2529
}
2630

31+
nexusPublishing {
32+
repositories {
33+
sonatype()
34+
}
35+
}
36+
2737
task clean(type: Delete) {
2838
delete rootProject.buildDir
2939
}

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

library/build.gradle

+43
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'maven-publish'
23
group='com.github.TutorialsAndroid'
34

5+
ext {
6+
PUBLISH_GROUP_ID = 'io.github.tutorialsandroid'
7+
PUBLISH_VERSION = '9.0.0'
8+
PUBLISH_ARTIFACT_ID = 'filepicker'
9+
PUBLISH_DESCRIPTION = 'Android Library to select files/directories from Device Storage'
10+
PUBLISH_URL = 'https://github.com/TutorialsAndroid/FilePicker'
11+
PUBLISH_LICENSE_NAME = 'Apache License'
12+
PUBLISH_LICENSE_URL =
13+
'https://github.com/TutorialsAndroid/FilePicker/blob/master/LICENSE'
14+
PUBLISH_DEVELOPER_ID = 'tutorialsandroid'
15+
PUBLISH_DEVELOPER_NAME = 'Akshay Masram'
16+
PUBLISH_DEVELOPER_EMAIL = '[email protected]'
17+
PUBLISH_SCM_CONNECTION =
18+
'scm:git:github.com/tutorialsandroid/filepicker.git'
19+
PUBLISH_SCM_DEVELOPER_CONNECTION =
20+
'scm:git:ssh://github.com/tutorialsandroid/filepicker.git'
21+
PUBLISH_SCM_URL =
22+
'https://github.com/tutorialsandroid/filepicker/tree/master'
23+
}
24+
425
android {
526
compileSdk 34
627

@@ -15,7 +36,29 @@ android {
1536
}
1637
}
1738
namespace 'com.developer.filepicker'
39+
40+
compileOptions {
41+
sourceCompatibility JavaVersion.VERSION_11
42+
targetCompatibility JavaVersion.VERSION_11
43+
}
1844
lint {
1945
abortOnError false
2046
}
2147
}
48+
49+
publishing {
50+
publications {
51+
release(MavenPublication) {
52+
groupId = PUBLISH_GROUP_ID
53+
artifactId = PUBLISH_ARTIFACT_ID
54+
version = PUBLISH_VERSION
55+
56+
from components.findByName('release')
57+
artifact("$buildDir/outputs/aar/library-release.aar")
58+
}
59+
}
60+
61+
tasks.named('publishReleasePublicationToMavenLocal') {
62+
dependsOn tasks.named('bundleReleaseAar')
63+
}
64+
}

scripts/publish-module.gradle

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
apply plugin: 'maven-publish'
2+
apply plugin: 'signing'
3+
4+
task androidSourcesJar(type: Jar) {
5+
archiveClassifier.set('sources')
6+
if (project.plugins.findPlugin("com.android.library")) {
7+
from android.sourceSets.main.java.srcDirs
8+
} else {
9+
from sourceSets.main.java.srcDirs
10+
}
11+
}
12+
13+
artifacts {
14+
archives androidSourcesJar
15+
}
16+
17+
group = PUBLISH_GROUP_ID
18+
version = PUBLISH_VERSION
19+
20+
afterEvaluate {
21+
publishing {
22+
publications {
23+
release(MavenPublication) {
24+
// The coordinates of the library, being set from variables that
25+
// we'll set up later
26+
groupId PUBLISH_GROUP_ID
27+
artifactId PUBLISH_ARTIFACT_ID
28+
version PUBLISH_VERSION
29+
30+
// Two artifacts, the `aar` (or `jar`) and the sources
31+
if (project.plugins.findPlugin("com.android.library")) {
32+
//from components.release
33+
} else {
34+
artifact("$buildDir/libs/${project.getName()}-${version}.jar")
35+
}
36+
37+
artifact bundleReleaseAar
38+
39+
// Mostly self-explanatory metadata
40+
pom {
41+
name = PUBLISH_ARTIFACT_ID
42+
description = PUBLISH_DESCRIPTION
43+
url = PUBLISH_URL
44+
licenses {
45+
license {
46+
name = PUBLISH_LICENSE_NAME
47+
url = PUBLISH_LICENSE_URL
48+
}
49+
}
50+
developers {
51+
developer {
52+
id = PUBLISH_DEVELOPER_ID
53+
name = PUBLISH_DEVELOPER_NAME
54+
email = PUBLISH_DEVELOPER_EMAIL
55+
}
56+
}
57+
58+
// Version control info - if you're using GitHub, follow the
59+
// format as seen here
60+
scm {
61+
connection = PUBLISH_SCM_CONNECTION
62+
developerConnection = PUBLISH_SCM_DEVELOPER_CONNECTION
63+
url = PUBLISH_SCM_URL
64+
}
65+
}
66+
}
67+
}
68+
}
69+
}
70+
71+
ext["signing.keyId"] = rootProject.ext["signing.keyId"]
72+
ext["signing.password"] = rootProject.ext["signing.password"]
73+
ext["signing.secretKeyRingFile"] = rootProject.ext["signing.secretKeyRingFile"]
74+
75+
signing {
76+
sign publishing.publications
77+
}

scripts/publish-root.gradle

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// Create variables with empty default values
2+
ext["signing.keyId"] = ''
3+
ext["signing.password"] = ''
4+
ext["signing.secretKeyRingFile"] = ''
5+
ext["ossrhUsername"] = ''
6+
ext["ossrhPassword"] = ''
7+
ext["sonatypeStagingProfileId"] = ''
8+
9+
File secretPropsFile = project.rootProject.file('local.properties')
10+
if (secretPropsFile.exists()) {
11+
// Read local.properties file first if it exists
12+
Properties p = new Properties()
13+
new FileInputStream(secretPropsFile).withCloseable { is -> p.load(is) }
14+
p.each { name, value -> ext[name] = value }
15+
} else {
16+
// Use system environment variables
17+
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
18+
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
19+
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
20+
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
21+
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
22+
ext["signing.secretKeyRingFile"] = System.getenv('SIGNING_SECRET_KEY_RING_FILE')
23+
}
24+
25+
// Set up Sonatype repository
26+
nexusPublishing {
27+
repositories {
28+
sonatype {
29+
stagingProfileId = sonatypeStagingProfileId
30+
username = ossrhUsername
31+
password = ossrhPassword
32+
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
33+
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)