Skip to content

Commit

Permalink
去除配置信息
Browse files Browse the repository at this point in the history
  • Loading branch information
lzx authored and lzx committed Jul 28, 2016
1 parent 049870e commit 13b3344
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 74 deletions.
72 changes: 0 additions & 72 deletions LRecyclerview_library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

version = "1.0.0"
group = "com.github.jdsjlzx"

def siteUrl = 'https://github.com/jdsjlzx/LRecyclerView'
def gitUrl = 'https://github.com/jdsjlzx/LRecyclerView.git'

android {
compileSdkVersion 24
buildToolsVersion "23.0.3"
Expand All @@ -30,72 +26,4 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:recyclerview-v7:24.0.0'
compile 'com.github.jdsjlzx:LRecyclerView:1.0.0'
}


install {
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom {
project {
packaging 'aar'
// Add your description here
name 'a RecyclerView that implements pullrefresh and loadingmore featrues.you can use it like a standard RecyclerView' //项目的描述 你可以多写一点
url siteUrl
// Set your license
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'jdsjlzx' //填写的一些基本信息
name 'lizhixian'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
archives sourcesJar
}

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = "maven"
name = "lrecyclerview" //发布到JCenter上的项目名字
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -16,7 +15,6 @@ buildscript {
allprojects {
repositories {
jcenter()

maven { url "https://jitpack.io" }
}
}
Expand Down

0 comments on commit 13b3344

Please sign in to comment.