Skip to content

Commit 5b4c247

Browse files
author
julien-fueled
authored
Merge pull request #21 from Fueled/fix-compiler
fix(.*): fix dependencies issues
2 parents c6178c6 + be46b6b commit 5b4c247

File tree

9 files changed

+9
-5
lines changed

9 files changed

+9
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Then add the dependency to the application module:
2121

2222
```groovy
2323
dependencies {
24-
annotationProcessor 'com.github.Fueled.flowr:flowr-compilers:1.2.1'
25-
compile 'com.github.fueled:flowr:1.2.1'
24+
annotationProcessor 'com.github.Fueled.flowr:flowr-compiler:1.2.2'
25+
compile 'com.github.fueled:flowr:1.2.2'
2626
}
2727
```
2828

extra/gradle/libraries.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ext {
99

1010
//library
1111
libraryGroup = 'com.github.fueled'
12-
libraryVersion = '1.2.0'
12+
libraryVersion = '1.2.2'
1313

1414
//android libraries
1515
supportVersion = '25.1.1'

flowr-annotations/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
apply plugin: 'java'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
4+
group = libraryGroup
5+
version = libraryVersion
26

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

flowr-compilers/src/main/java/com/fueled/flowr/compilers/DeepLinkAnnotationCompiler.java renamed to flowr-compiler/src/main/java/com/fueled/flowr/compilers/DeepLinkAnnotationCompiler.java

File renamed without changes.

flowr-compilers/src/main/resources/META-INF/services/javax.annotation.processing.Processor renamed to flowr-compiler/src/main/resources/META-INF/services/javax.annotation.processing.Processor

File renamed without changes.

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333

3434
compile project(':flowr')
3535

36-
annotationProcessor project(':flowr-compilers')
36+
annotationProcessor project(':flowr-compiler')
3737

3838
compile libraries.appCompat
3939
compile libraries.designSupport

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':flowr', ':sample', ':flowr-annotations', ':flowr-compilers'
1+
include ':flowr', ':sample', ':flowr-annotations', ':flowr-compiler'

0 commit comments

Comments
 (0)