pull/330/head
AriaLyy 8 years ago
parent 2566f37403
commit 987e54eb25
  1. 7
      Aria/build.gradle
  2. 23
      AriaAnnotations/build.gradle
  3. 23
      AriaCompiler/build.gradle
  4. 3
      build.gradle

@ -23,8 +23,8 @@ dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:appcompat-v7:23.1.1'
compile project(':AriaCompiler') // compile project(':AriaCompiler')
// compile project(':AriaAnnotations') compile project(':AriaAnnotations')
} }
//apply from: 'jcenter.gradle' //apply from: 'jcenter.gradle'
@ -61,7 +61,8 @@ publish {
artifactId = 'aria-core' artifactId = 'aria-core'
userOrg = rootProject.userOrg userOrg = rootProject.userOrg
groupId = rootProject.groupId groupId = rootProject.groupId
uploadName = rootProject.uploadName // uploadName = rootProject.uploadName
uploadName = 'AriaApi'
publishVersion = rootProject.publishVersion publishVersion = rootProject.publishVersion
description = rootProject.description description = rootProject.description
website = rootProject.website website = rootProject.website

@ -1,5 +1,5 @@
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'bintray-release' //apply plugin: 'bintray-release'
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {
options.encoding = "UTF-8" options.encoding = "UTF-8"
@ -12,13 +12,14 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
} }
publish { //publish {
artifactId = 'aria-annotations' // artifactId = 'aria-annotations'
userOrg = rootProject.userOrg // userOrg = rootProject.userOrg
groupId = rootProject.groupId // groupId = rootProject.groupId
uploadName = rootProject.uploadName //// uploadName = rootProject.uploadName
publishVersion = rootProject.publishVersion // uploadName = 'AriaAnnotations'
description = rootProject.description // publishVersion = rootProject.publishVersion
website = rootProject.website // description = rootProject.description
licences = rootProject.licences // website = rootProject.website
} // licences = rootProject.licences
//}

@ -1,5 +1,5 @@
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'bintray-release' //apply plugin: 'bintray-release'
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {
options.encoding = "UTF-8" options.encoding = "UTF-8"
@ -15,13 +15,14 @@ dependencies {
compile project(':AriaAnnotations') compile project(':AriaAnnotations')
} }
publish { //publish {
artifactId = 'aria-compiler' // artifactId = 'aria-compiler'
userOrg = rootProject.userOrg // userOrg = rootProject.userOrg
groupId = rootProject.groupId // groupId = rootProject.groupId
uploadName = rootProject.uploadName //// uploadName = rootProject.uploadName
publishVersion = rootProject.publishVersion // uploadName = 'AriaCompiler'
description = rootProject.description // publishVersion = rootProject.publishVersion
website = rootProject.website // description = rootProject.description
licences = rootProject.licences // website = rootProject.website
} // licences = rootProject.licences
//}

@ -35,8 +35,7 @@ task clean(type: Delete) {
ext { ext {
userOrg = 'arialyy' userOrg = 'arialyy'
groupId = 'com.arialyy.aria_pre' groupId = 'com.arialyy.aria'
uploadName = 'AriaPre'
// uploadName = 'AriaPre' // uploadName = 'AriaPre'
publishVersion = '0.0.3' publishVersion = '0.0.3'
repoName='maven' repoName='maven'

Loading…
Cancel
Save