Skip to content

Commit 60ec4f1

Browse files
committed
version 0.1.0 release
1 parent e2904b6 commit 60ec4f1

File tree

2 files changed

+47
-6
lines changed

2 files changed

+47
-6
lines changed

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:3.0.0'
10-
11-
// NOTE: Do not place your application dependencies here; they belong
12-
// in the individual module build.gradle files
10+
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
1311
}
1412
}
1513

1614
allprojects {
1715
repositories {
1816
jcenter()
17+
google()
1918
}
2019
}
2120

circle-menu/build.gradle

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'signing'
3+
apply plugin: 'com.bmuschko.nexus'
4+
5+
group = 'com.ramotion.circlemenu'
6+
version = '0.1.0'
27

38
android {
49
compileSdkVersion 26
@@ -8,7 +13,7 @@ android {
813
minSdkVersion 16
914
targetSdkVersion 26
1015
versionCode 1
11-
versionName "1.0"
16+
versionName version
1217

1318
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1419

@@ -26,7 +31,44 @@ dependencies {
2631
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
2732
exclude group: 'com.android.support', module: 'support-annotations'
2833
})
29-
compile 'com.android.support:appcompat-v7:26.+'
30-
compile 'com.android.support:design:26.+'
34+
compile 'com.android.support:appcompat-v7:26.1.0'
35+
compile 'com.android.support:design:26.1.0'
3136
testCompile 'junit:junit:4.12'
3237
}
38+
39+
modifyPom {
40+
project {
41+
name 'Circle Menu for Android'
42+
description 'CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. http://ramotion.com'
43+
url 'https://github.com/Ramotion/circle-menu-android'
44+
inceptionYear '2017'
45+
46+
scm {
47+
url 'https://github.com/Ramotion/circle-menu-android'
48+
connection 'scm:git@github.com:Ramotion/circle-menu-android.git'
49+
developerConnection 'scm:git@github.com:Ramotion/circle-menu-android.git'
50+
}
51+
52+
licenses {
53+
license {
54+
name 'The MIT License (MIT)'
55+
url 'https://opensource.org/licenses/mit-license.php'
56+
distribution 'repo'
57+
}
58+
}
59+
60+
developers {
61+
developer {
62+
id 'dvg4000'
63+
name 'Dmitry Grishechkin'
64+
email 'dvgrishechkin@yandex.ru'
65+
}
66+
}
67+
}
68+
}
69+
70+
nexus {
71+
sign = true
72+
repositoryUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
73+
snapshotRepositoryUrl = 'https://oss.sonatype.org/content/repositories/snapshots/'
74+
}

0 commit comments

Comments
 (0)