Artūras Šlajus

Results 64 comments of Artūras Šlajus

The -x flag does not impact the failure. I think it fails because the -cp option the script runs does not escape : in directory names and java uses :...

As a workaround, you can define this (credit to @armanbilge !) ```scala import cats.syntax.all.* import cats.effect.{Concurrent, Resource} extension[F[_], A] (resource: Resource[F, A]) { /** * As [[cats.effect.kernel.syntax.GenConcurrentOps_.memoize]] but with a...

I poked around this and [I believe it's an issue with SBT itself, not the plugin](https://discord.com/channels/632150470000902164/922600050989875282/1226117905918328872). Quote from Discord: > @eed3si9n I have reason to believe that when SBT re-runs...

``` $ rm -rf project/target/ target/ ~/.ivy2/cache/com.github.scala-incubator.io.* $ sbt > clean [success] Total time: 0 s, completed Jan 7, 2013 4:30:28 PM > test-only app.PostcodeSetTest ... [error] Could not run...

Will do when I get home :-) On Jan 7, 2013 4:49 PM, "Jesse Eichar" [email protected] wrote: > I just did this: > > mv ~/.ivy2 ~/.ivy2_all > curl -L...

Didn't get the chance to do this at home. However I did this at work and yes, it does work. I'll try sniffing around to see what causes problems on...

Found it! The problem lies in typesafe repository. I have `"Typesafe" at "http://repo.typesafe.com/typesafe/releases/"` in my resolvers list. When I added it to your examples build.sbt, things broke with same error...

Great. Thanks! As a workaround people can use ``` moduleConfigurations += ModuleConfiguration( "com.github.scala-incubator.io", DefaultMavenRepository ) ``` for now.