Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sabin/mp 178 migration to maven central #9

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Publish

on:
push:
branches:
- main
- 'releases/**'

jobs:
publish:
name: Release build and publish
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11

# Builds the release artifacts of the library
- name: Release build
run: ./gradlew :covert:assembleRelease

# Generates other artifacts
- name: Source jar and dokka
run: ./gradlew androidSourcesJar javadocJar

# Runs upload, and then closes & releases the repository
- name: Publish to MavenCentral
run: ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
SNAPSHOT: false
41 changes: 41 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Publish Snapshot builds


on:
push:
branches:
- development
- 'snapshot/**'




jobs:
publish:
name: Snapshot build and publish
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11
- name: Release build

run: ./gradlew :covert:assembleRelease
- name: Source jar and dokka
run: ./gradlew androidSourcesJar javadocJar
- name: Publish to MavenCentral
run: ./gradlew publishReleasePublicationToSonatypeRepository


env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
SNAPSHOT: true
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,12 @@ Version 2.0.0 *(05-09-2019)*
----------------------------

* Migrates to AndroidX
* Adds optional support for disabling swipe refresh layouts during swipes
* Adds optional support for disabling swipe refresh layouts during swipes

Version 2.0.1 *(17-02-2022)*
----------------------------

* Migration to maven central
*[Deprecation Details](https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/)


9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply plugin: 'org.jetbrains.dokka'

buildscript {
apply from: 'common.gradle'

repositories {
maven { url "https://plugins.gradle.org/m2/" }
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_gradle_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "digital.wup:android-maven-publish:$android_maven_version"
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.6.10'
}
}

Expand All @@ -22,3 +28,4 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "${rootDir}/publish-root.gradle"
14 changes: 8 additions & 6 deletions common.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
ext.version = "2.0.0"
ext.version = "2.0.1"
ext.group = "nz.co.trademe.covert"
ext.repo = "Covert"
ext.repo = "covert"
ext.org = "trademe"
ext.scm = 'https://github.com/TradeMe/Covert.git'
ext.connection = 'scm:git:github.com/TradeMe/Covert.git'
ext.developerConnection = 'scm:git:ssh://github.com/TradeMe/Covert.git'
ext.url = 'https://github.com/TradeMe/Covert'
ext.description = 'Covert is a small Android library allowing you to use Material Swipe Actions within a RecyclerView'

ext.compile_sdk = 29
ext.min_sdk = 15
ext.compile_sdk = 30
ext.min_sdk = 18
ext.kotlin_version = '1.3.50'
ext.android_maven_version = '3.6.2'
ext.android_gradle_plugin_version = '3.5.0'
ext.android_gradle_plugin_version = '4.0.1'
7 changes: 4 additions & 3 deletions covert/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

ext {
PUBLISH_VERSION = rootVersionName
}

apply from: '../common.gradle'
apply from: '../publishing.gradle'

Expand All @@ -17,9 +21,6 @@ android {
}
}

ext {
name = "Covert"
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
48 changes: 48 additions & 0 deletions publish-root.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@

// Create variables with empty default values
ext["signing.keyId"] = ''
ext["signing.password"] = ''
ext["signing.key"] = ''
ext["ossrhUsername"] = ''
ext["ossrhPassword"] = ''
ext["sonatypeStagingProfileId"] = ''
ext["snapshot"] = 'true'

File secretPropsFile = project.rootProject.file('local.properties')
if (secretPropsFile.exists()) {
// Read local.properties file first if it exists
Properties p = new Properties()
new FileInputStream(secretPropsFile).withCloseable { is -> p.load(is) }
p.each { name, value -> ext[name] = value }
} else {
// Use system environment variables
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
ext["signing.key"] = System.getenv('SIGNING_KEY')
ext["snapshot"] = System.getenv('SNAPSHOT')
}
if (Boolean.parseBoolean(snapshot)) {
ext["rootVersionName"] = project.ext.version + "-SNAPSHOT"
} else {
ext["rootVersionName"] = project.ext.version
}


// Set up Sonatype repository
nexusPublishing {
repositories {
sonatype {
useStaging.set(provider {
!Boolean.parseBoolean(snapshot)
})
stagingProfileId = sonatypeStagingProfileId
username = ossrhUsername
password = ossrhPassword
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
}
}
106 changes: 82 additions & 24 deletions publishing.gradle
Original file line number Diff line number Diff line change
@@ -1,39 +1,97 @@
if (project.plugins.hasPlugin("com.android.library")) {

apply plugin: 'digital.wup.android-maven-publish'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'org.jetbrains.dokka'

project.afterEvaluate {
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
}
task androidSourcesJar(type: Jar) {
archiveClassifier.set('sources')
if (project.plugins.findPlugin("com.android.library")) {
// For Android libraries
from android.sourceSets.main.java.srcDirs
from android.sourceSets.main.kotlin.srcDirs
} else {
from sourceSets.main.java.srcDirs
from sourceSets.main.kotlin.srcDirs
}

task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.source
}

}
task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
archiveClassifier.set('javadoc')
from dokkaJavadoc.outputDirectory
}

artifacts {
archives androidSourcesJar
archives javadocJar
}


afterEvaluate {
publishing {

publications {
aar(MavenPublication) {
from project.components.android
artifact project.androidSourcesJar
release(MavenPublication) {
groupId project.ext.group
artifactId project.name
version project.ext.version
}
}
artifactId project.ext.repo
version PUBLISH_VERSION

if (project.plugins.findPlugin("com.android.library")) {
from components.release
} else {
from components.java
}

artifact androidSourcesJar
artifact javadocJar

repositories {
maven {
name 'Bintray'
url "https://api.bintray.com/maven/${project.org}/${project.repo}/${project.name}/;publish=1"
// metadata
pom {
name = project.ext.repo
description = 'SDK'
url = project.ext.url
licenses {
license {
name = 'Covert License'
url = 'https://github.com/TradeMe/Covert/blob/master/LICENSE'
}
}
developers {
developer {
id = 'sabinmj'
name = 'Sabin Mulakukodiyan'
email = 'sabin.mulakukodiyan@trademe.co.nz'
}
// Add all other devs here...
}

credentials {
username BINTRAY_USERNAME
password BINTRAY_API_KEY
// Version control info - if you're using GitHub, follow the
// format as seen here
scm {
connection = project.ext.connection
developerConnection = project.ext.developerConnection
url = project.ext.url

}
}
}
}
}
}
signing {
if (rootProject.ext["signing.keyId"] && rootProject.ext["signing.key"] && rootProject.ext["signing.password"]) {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications

} else {
sign configurations.archives
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}