Skip to content

Commit

Permalink
beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
iwdael committed Jul 31, 2021
1 parent faea01e commit 66496a0
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 18 deletions.
17 changes: 11 additions & 6 deletions briefness-annotation/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

publish {
userOrg = 'hacknife'
groupId = 'com.hacknife.briefness'
artifactId = 'briefness-annotation'
publishVersion = "${bintrayVer}"
bintrayUser = 'hacknife'
bintrayKey = "${bintrayKey}"
desc = ''
website = 'https://github.com/hacknife/briefness'
}
24 changes: 18 additions & 6 deletions briefness-compiler/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'com.novoda.bintray-release'

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.auto.service:auto-service:1.0-rc2'
compile project(':briefness-annotation')
compile 'com.github.javaparser:javaparser-core:3.7.0'
}
api fileTree(include: ['*.jar'], dir: 'libs')
api 'com.google.auto.service:auto-service:1.0-rc2'
api project(':briefness-annotation')
}

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8



publish {
userOrg = 'hacknife'
groupId = 'com.hacknife.briefness'
artifactId = 'briefness-compiler'
publishVersion = "${bintrayVer}"
bintrayUser = 'hacknife'
bintrayKey = "${bintrayKey}"
desc = ''
website = 'https://github.com/hacknife/briefness'
}
13 changes: 9 additions & 4 deletions briefness-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ uploadArchives {
}
}

dependencies {
implementation 'com.android.tools.build:gradle:3.1.4'
implementation 'com.github.javaparser:javaparser-core:3.5.14'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71'

publish {
userOrg = 'hacknife'
groupId = 'com.hacknife.briefness'
artifactId = 'briefness-plugin'
publishVersion = "${bintrayVer}"
bintrayUser = 'hacknife'
bintrayKey = "${bintrayKey}"
desc = ''
website = 'https://github.com/hacknife/onlite'
}
14 changes: 13 additions & 1 deletion briefness/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -18,5 +19,16 @@ android {
}

dependencies {
compile project(path: ':briefness-annotation')
api project(path: ':briefness-annotation')
}

publish {
userOrg = 'hacknife'
groupId = 'com.hacknife.briefness'
artifactId = 'briefness'
publishVersion = "${bintrayVer}"
bintrayUser = 'hacknife'
bintrayKey = "${bintrayKey}"
desc = ''
website = 'https://github.com/hacknife/briefness'
}
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
buildscript {

ext.kotlin_version = "1.3.72"

ext.bintrayKey = ''
ext.bintrayVer = '1.5.6'
ext.buildConfig = [
'compileSdkVersion': 28,
'minSdkVersion' : 11,
Expand All @@ -18,6 +19,8 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.9.2'

}


Expand Down

0 comments on commit 66496a0

Please sign in to comment.