Code generator was wrongly added as a required dependency.
This commit is contained in:
parent
ea83f5017e
commit
aa1e7da38c
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Version 0.3.5
|
||||||
|
- Fixed: Simple Code Generator dependency was declared wrong. Its only needed for runtime. Not for Compilation.
|
||||||
|
|
||||||
### Version 0.3.4
|
### Version 0.3.4
|
||||||
- Fixed: ArrayLists didn't resize properly if they were empty.
|
- Fixed: ArrayLists didn't resize properly if they were empty.
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,8 @@ configurations {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'de.speiger:Simple-Code-Generator:1.0.4'
|
builderCompile 'de.speiger:Simple-Code-Generator:1.0.4'
|
||||||
|
runtimeOnly 'de.speiger:Simple-Code-Generator:1.0.4'
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.12'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue