Skip to content

Commit

Permalink
Merge pull request #21 from Fueled/fix-compiler
Browse files Browse the repository at this point in the history
fix(.*): fix dependencies issues
  • Loading branch information
julien-fueled authored May 24, 2017
2 parents c6178c6 + be46b6b commit 5b4c247
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Then add the dependency to the application module:

```groovy
dependencies {
annotationProcessor 'com.github.Fueled.flowr:flowr-compilers:1.2.1'
compile 'com.github.fueled:flowr:1.2.1'
annotationProcessor 'com.github.Fueled.flowr:flowr-compiler:1.2.2'
compile 'com.github.fueled:flowr:1.2.2'
}
```

Expand Down
2 changes: 1 addition & 1 deletion extra/gradle/libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext {

//library
libraryGroup = 'com.github.fueled'
libraryVersion = '1.2.0'
libraryVersion = '1.2.2'

//android libraries
supportVersion = '25.1.1'
Expand Down
4 changes: 4 additions & 0 deletions flowr-annotations/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
apply plugin: 'java'
apply plugin: 'com.github.dcendents.android-maven'

group = libraryGroup
version = libraryVersion

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {

compile project(':flowr')

annotationProcessor project(':flowr-compilers')
annotationProcessor project(':flowr-compiler')

compile libraries.appCompat
compile libraries.designSupport
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':flowr', ':sample', ':flowr-annotations', ':flowr-compilers'
include ':flowr', ':sample', ':flowr-annotations', ':flowr-compiler'

0 comments on commit 5b4c247

Please sign in to comment.