Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from google/publish-to-maven
Browse files Browse the repository at this point in the history
Publish to Maven
  • Loading branch information
yrezgui committed Jun 17, 2021
2 parents 387853d + a0a2c88 commit 8a0ede8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Expand Up @@ -34,7 +34,8 @@ buildscript {
plugins {
id "com.diffplug.spotless" version "5.12.5"
id "org.jetbrains.dokka" version "1.4.32"
id "me.tylerbwong.gradle.metalava" version "0.1.7" apply false
id "me.tylerbwong.gradle.metalava" version "0.1.7" apply false
id "com.vanniktech.maven.publish" version "0.15.1" apply false
}

allprojects {
Expand Down
17 changes: 14 additions & 3 deletions gradle.properties
Expand Up @@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
Expand All @@ -32,6 +31,18 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
android.enableJetifier=false
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.code.style=official
GROUP=com.google.modernstorage
VERSION_NAME=1.0.0-alpha01
POM_DESCRIPTION=Utility libraries for storage interactions on Android
POM_URL=https://github.com/google/modernstorage/
POM_SCM_URL=https://github.com/google/modernstorage/
POM_SCM_CONNECTION=scm:git:git://github.com/google/modernstorage.git
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/google/modernstorage.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=google
POM_DEVELOPER_NAME=Google
1 change: 1 addition & 0 deletions mediastore/build.gradle
Expand Up @@ -17,6 +17,7 @@ plugins {
id 'com.android.library'
id 'kotlin-android'
id 'org.jetbrains.dokka'
id 'com.vanniktech.maven.publish'
}

android {
Expand Down
2 changes: 1 addition & 1 deletion mediastore/gradle.properties
@@ -1,3 +1,3 @@
POM_ARTIFACT_ID=modernstorage-mediastore
POM_NAME=ModernStorage MediaStore library
POM_NAME=ModernStorage MediaStore
POM_PACKAGING=aar

0 comments on commit 8a0ede8

Please sign in to comment.