Skip to content

Commit a39a467

Browse files
committed
upload to jCenter
1 parent 56e4e34 commit a39a467

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ buildscript {
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.2.2'
99

10+
classpath 'com.android.tools.build:gradle:2.2.2'
11+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
12+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
13+
1014
// NOTE: Do not place your application dependencies here; they belong
1115
// in the individual module build.gradle files
1216
}

library/build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
apply plugin: 'com.android.library'
22

3+
ext {
4+
bintrayRepo = 'maven'
5+
bintrayName = 'AndroidArcMenu'
6+
7+
publishedGroupId = 'com.hackplan'
8+
libraryName = 'AndroidArcMenu'
9+
artifact = 'AndroidArcMenu'
10+
11+
libraryDescription = 'An easy-to-use arc Menu library for Android.'
12+
13+
siteUrl = '//github.com/HackPlan/AndroidArcMenu'
14+
gitUrl = '//github.com/HackPlan/AndroidArcMenu'
15+
16+
libraryVersion = '1.0.0'
17+
18+
developerId = 'Dacer'
19+
developerName = 'Ding Wenhao'
20+
developerEmail = '[email protected]'
21+
22+
licenseName = 'The Apache Software License, Version 2.0'
23+
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
24+
allLicenses = ["Apache-2.0"]
25+
}
26+
327
android {
428
compileSdkVersion COMPILE_SDK_VERSION as int
529
buildToolsVersion BUILD_TOOLS_VERSION
@@ -25,3 +49,6 @@ dependencies {
2549
compile 'com.android.support:recyclerview-v7:24.0.0'
2650
compile 'com.jakewharton.timber:timber:4.3.1'
2751
}
52+
53+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
54+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

0 commit comments

Comments
 (0)