From 1d1d45943b9ab69bdaf8d129606c978e2c3d1b3d Mon Sep 17 00:00:00 2001 From: Keita Kagurazaka Date: Thu, 2 Nov 2017 16:14:30 +0900 Subject: [PATCH] Bump v0.0.1 --- build.gradle | 3 +++ gradle.properties | 20 +++----------------- library/build.gradle | 3 ++- 3 files changed, 8 insertions(+), 18 deletions(-) diff --git a/build.gradle b/build.gradle index 97c0cf8..519aa70 100644 --- a/build.gradle +++ b/build.gradle @@ -9,10 +9,13 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.0.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } + group = GROUP + version = VERSION_NAME } allprojects { diff --git a/gradle.properties b/gradle.properties index aac7c9b..9b88d89 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,17 +1,3 @@ -# Project-wide Gradle settings. - -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. - -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html - -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx1536m - -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true +# Project settings +GROUP=com.github.k-kagurazaka +VERSION_NAME=0.0.1 diff --git a/library/build.gradle b/library/build.gradle index 522a6ef..d0be894 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -1,5 +1,6 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' +apply plugin: 'com.github.dcendents.android-maven' android { compileSdkVersion 27 @@ -8,7 +9,7 @@ android { minSdkVersion 15 targetSdkVersion 27 versionCode 1 - versionName "1.0" + versionName "0.0.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } }