diff --git a/LRecyclerview_library/build.gradle b/LRecyclerview_library/build.gradle index 85e55f9..1a52407 100644 --- a/LRecyclerview_library/build.gradle +++ b/LRecyclerview_library/build.gradle @@ -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" @@ -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 'jdsjlzx@qq.com' - } - } - 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 - } } \ No newline at end of file diff --git a/build.gradle b/build.gradle index 12674a8..f16a5c0 100644 --- a/build.gradle +++ b/build.gradle @@ -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 } @@ -16,7 +15,6 @@ buildscript { allprojects { repositories { jcenter() - maven { url "https://jitpack.io" } } }