AndroidStudio Gradle插件自定義

刪除java文件夾、res文件夾

在main下面新建 groovy 文件夾

新建 com.guosen.plugin (名字自己定義)

新建resources 文件夾 和groovy同級,在resources裏面新建META-INF。gradle-plugins目錄,底下有guosen-plugin(插件名稱).properties

implementation-class=com.guosen.plugin.MyHelloWorldPlugin
//後面爲實現類

插件model 的build.gradle

apply plugin: 'java-library'
apply plugin: 'java-gradle-plugin'
apply plugin: 'groovy'
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation gradleApi()
    implementation localGroovy()
}




apply plugin: 'maven'
uploadArchives {
    repositories {
        mavenDeployer {
            pom.groupId = 'com.guosen.implePlugin'
            pom.artifactId = 'guosen-plugin'
            pom.version = 1.0
            //本地的Maven地址設置爲D:/repos
            repository(url: uri('../repo'))
        }
    }
}

sourceCompatibility = "1.8"
targetCompatibility = "1.8"

整個項目的build。gradle


// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'guosen-plugin'
buildscript {
    
    repositories {
        google()
        jcenter()
        maven {
            //cooker-plugin 所在的倉庫
            //這裏是發佈在本地文件夾了
            url uri('./repo')
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.guosen.implePlugin:guosen-plugin:1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章