Skip to content

Commit

Permalink
Merge pull request #4 from aizuzi/dev
Browse files Browse the repository at this point in the history
添加jitpack
  • Loading branch information
aizuzi authored Jul 27, 2018
2 parents 19663f6 + 8bc9a7c commit 355d3c3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions fastadapter/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.aizuzi'

android {
compileSdkVersion 27
Expand Down
14 changes: 14 additions & 0 deletions fastadapter_processor/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'java-library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.aizuzi'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
Expand All @@ -12,3 +14,15 @@ dependencies {

sourceCompatibility = "7"
targetCompatibility = "7"

jar {
manifest {
attributes(
"Manifest-Version": 1.0,
"Main-Class": "com.testbird.rio.Main")
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
into('assets') {
from 'assets'
}
}

0 comments on commit 355d3c3

Please sign in to comment.