laoyuyu
2019-03-07 21:44:32 +08:00
parent d8a14c0086
commit 0f9f2577b8
120 changed files with 10595 additions and 307 deletions

View File

@@ -1,12 +1,12 @@
apply plugin: 'bintray-release'
apply plugin: 'com.novoda.bintray-release'
publish {
artifactId = 'aria-compiler'
userOrg = rootProject.userOrg
groupId = rootProject.groupId
userOrg = rootProject.ext.userOrg
groupId = rootProject.ext.groupId
// uploadName = rootProject.uploadName
uploadName = 'AriaCompiler'
publishVersion = rootProject.publishVersion
description = rootProject.description
website = rootProject.website
licences = rootProject.licences
publishVersion = rootProject.ext.publishVersion
desc = rootProject.ext.desc
website = rootProject.ext.website
licences = rootProject.ext.licences
}

View File

@@ -7,11 +7,11 @@ sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.auto:auto-common:0.6'
compile 'com.google.auto.service:auto-service:1.0-rc2'
compile 'com.squareup:javapoet:1.9.0'
compile project(':AriaAnnotations')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.auto:auto-common:0.6'
implementation 'com.google.auto.service:auto-service:1.0-rc2'
implementation 'com.squareup:javapoet:1.9.0'
implementation project(':AriaAnnotations')
}
apply from: 'bintray-release.gradle'