Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.

Commit

Permalink
发布1.1版本
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceWind committed Jun 23, 2017
1 parent b90ed18 commit 55df613
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 19 deletions.
16 changes: 7 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,13 @@ android {


dependencies {
// apt fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(include: ['*.jar'], dir: 'libs')
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
// compile 'com.scavenges:GeneratorX:1.0.2'
// apt 'com.squareup:javapoet:1.4.0'
// compile 'com.squareup:javapoet:1.4.0'
// apt project(':generatorclassx')
// compile project(path: ':generatorclassx')
compile project(':generatorclassx')
apt project(':generatorclassx')

compile 'com.scavenges:GeneratorX:1.1'
// apt 'com.squareup:javapoet:1.4.0'
// compile 'com.squareup:javapoet:1.4.0'
// apt project(':generatorclassx')
// compile project(path: ':generatorclassx')
}
20 changes: 10 additions & 10 deletions generatorclassx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ apply plugin: 'java'
// 这里添加下面两行代码。
//apply plugin: 'com.github.dcendents.android-maven'
//apply plugin: 'com.jfrog.bintray'
//apply plugin: 'com.novoda.bintray-release'
apply plugin: 'com.novoda.bintray-release'

// This is important even if Android Studio claims it isn't
// used. Android can't interpret Java 8 byte code.
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7

//publish {
// userOrg = 'scavenges' //bintray注册的用户名
// groupId = 'com.scavenges' //compile引用时的第1部分groupId
// artifactId = 'GeneratorX' //compile引用时的第2部分项目名
// publishVersion = '1.0.2' //compile引用时的第3部分版本号
// desc = 'just generator class.'
// website = 'https://github.com/Scavenges/GeneratorX'
//}
publish {
userOrg = 'scavenges' //bintray注册的用户名
groupId = 'com.scavenges' //compile引用时的第1部分groupId
artifactId = 'GeneratorX' //compile引用时的第2部分项目名
publishVersion = '1.1' //compile引用时的第3部分版本号
desc = 'just generator class.'
website = 'https://github.com/Scavenges/GeneratorX'
}

dependencies {
// compile project(':lib')
Expand All @@ -26,4 +26,4 @@ dependencies {
}


//version = "1.0.2"
version = "1.1"

0 comments on commit 55df613

Please # to comment.