Skip to content

Commit

Permalink
chore: use maven gradle publishing plugin (#2037)
Browse files Browse the repository at this point in the history
pom files are automatically generated from the build.gradle
dependencies.

./gradlew publishToMavenLocal

./gradlew uploadArchives
  • Loading branch information
jamesonwilliams authored Jul 31, 2020
1 parent 50abafb commit 11d2075
Show file tree
Hide file tree
Showing 129 changed files with 454 additions and 2,774 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ jobs:
steps:
- skip_job_if_required
- checkout
- generate_gradle_wrapper
- prepare_sdkmanager
- generate_gradle_wrapper
- run:
name: build the whole project
command: |
Expand Down Expand Up @@ -329,8 +329,8 @@ jobs:
- skip_job_if_required
- checkout
- skip_test_job
- generate_gradle_wrapper
- prepare_sdkmanager
- generate_gradle_wrapper
- run:
name: run unit tests
command: |
Expand Down
1 change: 1 addition & 0 deletions aws-android-sdk-apigateway-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply from: rootProject.file('publishing.gradle')

android {
compileSdkVersion 29
Expand Down
4 changes: 4 additions & 0 deletions aws-android-sdk-apigateway-core/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
POM_ARTIFACT_ID=aws-android-sdk-apigateway-core
POM_DESCRIPTION=The AWS Android SDK for Amazon API Gateway Runtime module holds the runtime library needed by the generated client for APIs defined in Amazon API Gateway.
POM_NAME=AWS SDK for Android - Amazon API Gateway Client Runtime
POM_PACKAGING=aar
47 changes: 0 additions & 47 deletions aws-android-sdk-apigateway-core/pom.xml

This file was deleted.

1 change: 1 addition & 0 deletions aws-android-sdk-auth-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply from: rootProject.file('publishing.gradle')

android {
compileSdkVersion 29
Expand Down
4 changes: 4 additions & 0 deletions aws-android-sdk-auth-core/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
POM_ARTIFACT_ID=aws-android-sdk-auth-core
POM_DESCRIPTION=The AWS Android SDK for AWS Authentication Core module holds the client classes that are used for enabling communication with Amazon CognitoIdentityProvider, Amazon Cognito UserPools, Facebook and Google SignIn Providers
POM_NAME=AWS SDK for Android - AWS Authentication Core
POM_PACKAGING=aar
55 changes: 0 additions & 55 deletions aws-android-sdk-auth-core/pom.xml

This file was deleted.

1 change: 1 addition & 0 deletions aws-android-sdk-auth-facebook/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply from: rootProject.file('publishing.gradle')

android {
compileSdkVersion 29
Expand Down
4 changes: 4 additions & 0 deletions aws-android-sdk-auth-facebook/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
POM_ARTIFACT_ID=aws-android-sdk-auth-facebook
POM_DESCRIPTION=The AWS Android SDK for AWS Facebook SignIn that holds the client classes used for enabling communication with Facebook SignIn
POM_NAME=AWS SDK for Android - AWS Facebook SignIn
POM_PACKAGING=aar
76 changes: 0 additions & 76 deletions aws-android-sdk-auth-facebook/pom.xml

This file was deleted.

1 change: 1 addition & 0 deletions aws-android-sdk-auth-google/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
apply from: rootProject.file('publishing.gradle')
apply plugin: 'com.android.library'

android {
Expand Down
4 changes: 4 additions & 0 deletions aws-android-sdk-auth-google/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
POM_ARTIFACT_ID=aws-android-sdk-auth-google
POM_DESCRIPTION=The AWS Android SDK for AWS Google SignIn that holds the client classes that are used for enabling communication with Google SignIn
POM_NAME=AWS SDK for Android - AWS Google SignIn
POM_PACKAGING=aar
85 changes: 0 additions & 85 deletions aws-android-sdk-auth-google/pom.xml

This file was deleted.

1 change: 1 addition & 0 deletions aws-android-sdk-auth-ui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
apply from: rootProject.file('publishing.gradle')
apply plugin: 'com.android.library'

android {
Expand Down
4 changes: 4 additions & 0 deletions aws-android-sdk-auth-ui/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
POM_ARTIFACT_ID=aws-android-sdk-auth-ui
POM_DESCRIPTION=The AWS Android SDK for Authentication UI holds the client classes that are used for presenting the SignIn Screen with SignInButtons and Amazon Cognito UserPools UI
POM_NAME=AWS SDK for Android - AWS Authentication UI
POM_PACKAGING=aar
Loading

0 comments on commit 11d2075

Please sign in to comment.