Adam

Results 337 comments of Adam

> `Unable to download toolchain` Hmm weird. I guess you're on a M1 Mac? Maybe it's this issue https://github.com/gradle/gradle/issues/19874 What versions of Java do you have installed? You might have...

> About the question in the initial comment on `localrepo`: i don't think it can be removed, it's not exactly the same as doing `publishToMavenLocal`. > > It's meant to...

Actually thinking about it, the new Gradle toolchain config means on ci/cd Gradle will always download JDK8, so the JDKs that are set in the GitHub action matrix aren't tested....

> Still cannot build it locally btw, getting the same error. Are you on an M1 Mac? Is it this issue? https://github.com/gradle/gradle/issues/19874

I changed the buildSrc Toolchain to be jdk11 - that might fix it?

> Care to explain your use case again, as of why you expect to benefit from knowing what files **would** be copied into an image? I'm interested in this so...

I'm interested in making a PR for this. I've had a look at the code and I think some groundwork needs to be done first, as the Gradle config is...

At first glance it looks like migrating to multiplatform will be pretty easy! 1. Make `DomTreeElement` a common class - different languages will have to implement their own versions. JVM...

I'm planning to only keep the JVM target, but migrate the common Skrape code to `commonMain`. I'll make a `commonMain` `expect class` that any JVM native functionality will have to...