I've cloned the repository and ran `gradlew instal...
# kontributors
d
I've cloned the repository and ran
gradlew install
. Now I can see all the artifacts in my local maven repository. When trying to do a gradle build referencing the snapshot artifacts in my local maven repo I get the following error: Built-in class kotlin.Enum is not found. My build.gradle.kts and settings.gradle.kts. Any advice?
t
Do you use IR mode?
Do you use Java 8 for build?
d
Yes and yes
It seems
install
does not install the IR artifacts for the stdlib? Because if I explicitly add dependency on `1.4-M2`of the stdlib it does work
t
Add following in
gradle.properties
<http://include.stdlib.js.ir|include.stdlib.js.ir>=true
👍 1
And run
clean
before
install
Also you can use
--parallel
for
install
It saves time :)
d
Worked flawlessly, thank you!
👍 1