美文网首页
如何搭建maven,开源android moudle 到jcen

如何搭建maven,开源android moudle 到jcen

作者: feifei_fly | 来源:发表于2018-02-23 14:25 被阅读0次
    1. 如何搭建maven私有库:

    https://www.jianshu.com/p/9740778b154f
    https://www.jianshu.com/p/d6f6aec8903c

    1. 如何使用maven库:

    https://www.jianshu.com/p/57f8af15ef9c

    三种maven库

    maven库可分为两种maven标准库和自定义maven库

    只有两个标准的maven库:jcenter 和 Maven Central。

    1. jcenter
      jcenter是一个由 bintray.com维护的Maven仓库 。你可以在这里看到整个仓库的内容。

    我们在项目的build.gradle 文件中如下定义仓库,就能使用jcenter了:

    allprojects {
        repositories {
            jcenter()
        }
    }
    
    1. Maven Central
      maven Central则是由sonatype.org维护的Maven仓库
      我们在项目的build.gradle 文件中如下定义仓库,就能使用Maven Central了:
    
    allprojects {
        repositories {
            mavenCentral()
        }
    }
    
    1. 自定义库(私有库)

    根目录build.gradle种声明 私有库:

    allprojects {
        repositories {
            jcenter()
            maven { url "http://localhost:8081/repository/maven-releases/" }
        }
    }
    

    子项目中添加依赖:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile ("com.maven.studo.library:test:1.0")
    
    }
    

    Android studio 寻找aar的过程:

    image

    本地仓库是远程仓库的一个缓冲和子集,当你构建Maven项目的时候,首先会从本地仓库查找资源,如果没有,那么Maven会从远程仓库下载到你本地仓库。这样在你下次使用的时候就不需要从远程下载了。如果你所需要的jar包版本在本地仓库没有,而且也不存在于远程仓库,Maven在构建的时候会报错,这种情况可能是有些jar包的新版本没有在Maven仓库中及时更新.

    1. 默认仓库的存储位置

    Maven缺省的本地仓库路径为${user.home}/.m2/repository

    如:Users/baixuefei/.m2/repository/

    1. 自定义修改仓库的存储位置:

    可改变默认的 .m2 目录下的默认本地存储库文件夹
    通过修改${user.home}/.m2/settings.xml 配置本地仓库路径 ,没有settings这个xml文件就新建,或者如下复制个

    如何将Android library开源到 jcenter

    参考链接

    1. 注册一个google账号:

    注册bintray账号时需要,bintray只接受google邮箱注册)

    1. 注册Bintray账号

    正确的注册地址为:

    https://bintray.com/signup/oss
    
    • 创建组织

    使用注册账号登录后,点击 Add New Organization

    image
    • 创建仓库

    点击 Add New Repository 创建仓库

    image
    1. 在Android Studio 中添加配置

    主要涉及到的配置有三个:

    第一个:工程项目(project)的 build.gradle文件

    第二个:模块库(module) 的 build.gradle文件

    第三个:工程项目的 local.properties文件

    • 配置第一个
      在你Project的build.gradle文件中加入Maven和Jfrog Bintray的依赖插件:
     classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
     classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
    
    
    • 配置第二个
    apply plugin: 'com.android.library'
    apply plugin: 'com.jfrog.bintray'
    apply plugin: 'com.github.dcendents.android-maven'
    
    def siteUrl = 'https://github.com/feifei-123/myfirst'   // 项目的主页
    def gitUrl = 'https://github.com/feifei-123/myfirst.git'   // Git仓库的url
    Properties properties = new Properties()
    properties.load(project.rootProject.file('local.properties').newDataInputStream())
    
    version = "1.0" //发布版本号
    group = "com.feifei" //最终引用形式,如compile 'com.leon.lfilepicker:1.0.0',其中lfilepicker在后面配置
    android {
        compileSdkVersion 25
        buildToolsVersion "25.0.2"
    
        defaultConfig {
            minSdkVersion 15
            targetSdkVersion 25
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
    
    }
    bintray {
        user = properties.getProperty("bintray.user")
        key = properties.getProperty("bintray.apikey")
        pkg {
            repo = 'mylibrary'//自己创建的仓库名字
            name = 'testMaven'//上传到JCenter的名字,最终引用的名字
            websiteUrl = siteUrl
            vcsUrl = gitUrl
            licenses = ['MIT']//不能随便写,只能是仓库创建时选择的license type
            userOrg = 'feifei1234' //自己创建的organization名称
            publish = true // 是否是公开项目,公开别人可以引用
    
            version {
                name = '1.0'
                desc = 'feifei open library.'//描述,自己定义
                released  = new Date()
                vcsTag = 'v1.0'
                attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
            }
        }
        configurations = ['archives']
    }
    
    install {
        repositories.mavenInstaller {
            // This generates POM.xml with proper parameters
            pom {
                project {
                    packaging 'aar'
                    // Add your description here
                    name 'Feifei Android'
                    description 'feifei open library.'
                    url siteUrl
                    // Set your license
                    licenses {
                        license {
                            name 'MIT' //和之前自己定义的协议一致
                            url 'https://raw.githubusercontent.com/minggo620/Pluto-Android/master/LICENSE'
                        }
                    }
                    developers {
                        developer {
                            id 'feifei123'        //填写bintray或者github的用户名
                            name 'baixuefei'         //姓名
                            email 'feifei.nancy.1314@gmail.com'//邮箱
                        }
                    }
                    scm {
                        connection gitUrl
                        developerConnection gitUrl
                        url siteUrl
                    }
                }
            }
        }
    }
    task sourcesJar(type: Jar) {
        from android.sourceSets.main.java.srcDirs
        classifier = 'sources'
    }
    task javadoc(type: Javadoc) {
        failOnError false //必须添加以免出错
        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
    }
    
    javadoc {
        options{
            //如果你的项目里面有中文注释的话,必须将格式设置为UTF-8,不然会出现乱码
            encoding "UTF-8"
            charSet 'UTF-8'
            author true
            version true
            links "http://docs.oracle.com/javase/7/docs/api"
        }
    }
    
    
    • 配置第三个
      在local.properties中添加账户名称和apikey信息
    bintray.user=feifei123
    bintray.apikey=**********
    
    
    
    1. 执行命令

    输入命令:gradlew install
    此时也会显示下载安装一些东西,耐心等待即可,完成后显示“BUILD SUCCESSFUL”即表示成功。

    最后上传,在Terminal窗口输入命令:gradlew bintrayUpload
    然后等待上传,显示“BUILD SUCCESSFUL”即表示成功。

    1. 发布

    回到仓库页面可以看到刚才上传的项目

    image

    点击项目后进入详细界面,这个时候点击界面右下角的add to JCenter,然后输入描述发送即可。
    然后等待审核,

    相关文章

      网友评论

          本文标题:如何搭建maven,开源android moudle 到jcen

          本文链接:https://www.haomeiwen.com/subject/bzlxxftx.html