0

I'm trying to use soda date time in my Play! scalajs application.

Soda date time

is imported (without any error) on the client side with

"org.mdedetrich" %%% "soda-time" % "0.0.1-SNAPSHOT"

But when I try to use it, simply like this:

val dateTime = new org.joda.DateTime(new js.Date())

I get the following error:

type DateTime is not a member of package org.joda

I don't see what I'm missing...

Simon
  • 6,025
  • 7
  • 46
  • 98

1 Answers1

0

I was checking the source code of soda-time in GitHub and I think DateTime is under org.soda.time instead of org.soda

I haven't used soda-time before, but I'm using scalajs-jsjoda for my cross js and JVM projects.

Ben Aiad
  • 78
  • 1
  • 6