Skip to content

Commit

Permalink
Setup maven publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
saket committed Oct 10, 2020
1 parent 1017391 commit a7cdcf2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Expand Up @@ -14,6 +14,8 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10"
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.13.0'
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.18"
}
}

Expand Down
1 change: 1 addition & 0 deletions cascade/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.vanniktech.maven.publish'

android {
resourcePrefix "cascade_"
Expand Down
21 changes: 21 additions & 0 deletions cascade/gradle.properties
@@ -0,0 +1,21 @@
GROUP=me.saket.cascade
POM_ARTIFACT_ID=cascade
VERSION_NAME=1.0.0

POM_NAME=cascade
POM_PACKAGING=aar

POM_DESCRIPTION=Nested popup menus with smooth height change animations.
POM_INCEPTION_YEAR=2020

POM_URL=https://github.com/saket/cascade
POM_SCM_URL=https://github.com/saket/cascade
POM_SCM_CONNECTION=scm:git@github.com:saket/cascade.git
POM_SCM_DEV_CONNECTION=scm:git@github.com:saket/cascade.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=saketme
POM_DEVELOPER_NAME=Saket Narayan

0 comments on commit a7cdcf2

Please sign in to comment.