Skip to content

Commit

Permalink
更新配置文件
Browse files Browse the repository at this point in the history
  • Loading branch information
wujiajun committed Apr 20, 2017
1 parent 52d54bb commit f6fe563
Show file tree
Hide file tree
Showing 31 changed files with 34 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
* Logger 一个简洁漂亮的日志打印库

# 联系方式
* QQ:928320442
* Email:wujiajun311@gmail.com
* **QQ**928320442
* **Email** [email protected]
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(path: ':library')
compile project(path: ':easyandroid')
//butterknife viewInject
compile "com.jakewharton:butterknife:$rootProject.butterknife"
compile "com.jakewharton:butterknife-compiler:$rootProject.butterknife"
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ buildscript {
classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}

Expand Down
File renamed without changes.
28 changes: 28 additions & 0 deletions library/build.gradle → easyandroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,31 @@ dependencies {
//logger
compile "com.orhanobut:logger:$rootProject.orhanobutLogger"
}

ext {
bintrayRepo = 'maven'////bintray上的仓库名,一般为maven
bintrayName = 'EasyAndroid'//bintray上的项目名

publishedGroupId = 'com.wjj.easy'//JCenter的GroupId
artifact = 'easyandroid'//JCenter的ArtifactId

siteUrl = 'https://github.com/wu928320442/EasyAndroid.git'
gitUrl = 'https://github.com/wu928320442/EasyAndroid.git'

libraryVersion = '1.0.0'//版本号
libraryName = 'easyandroid'//项目名字,没什么用
libraryDescription = 'A lib for Android'//项目描述,没什么用

//开发者信息
developerId = 'juju'
developerName = 'juju'
developerEmail = '[email protected]'

//以上所有信息自行修改,以下不变

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
apply from:'https://cdn.rawgit.com/Jude95/JCenter/master/install.gradle'
apply from:'https://cdn.rawgit.com/Jude95/JCenter/master/bintray.gradle'
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':library'
include ':app', ':easyandroid'

0 comments on commit f6fe563

Please sign in to comment.