nemoo

Results 20 comments of nemoo

So with play 2.8.11, the 'application.home' property is still not passed to conf/logback.xml in production mode. Can we reopen the issue?

How to reproduce the problem: - check out my example project that uses file appender as described in the play documentation with ("application.home:-"): https://github.com/nemoo/play-slick-synchronous-example - `sbt clean dist` Then: 'application.home'...

ok, got it to compile by extending both. ``` import com.github.takezoe.slick.blocking.BlockingJdbcProfile import com.github.tminglei.slickpg._ trait MyPostgresDriver extends ExPostgresProfile with BlockingJdbcProfile with PgDate2Support { override val api = new API with DateTimeImplicits...

My simple test case for the use of OffsetDateTime ( https://github.com/nemoo/play-slick-synchronous-example/blob/slick-pg/test/models/ModelScalaTestSpec.scala#L55 ) ``` "An timestamp " should { "be persisted correctly" in { db.withSession { implicit session => val projectId...

Great, I will give it a go. Is there a contribution guide? When I tried `sbt publishLocal` it only created the scala 2.12 versions, not the scala 2.13 version. Edit:...

This requires also a bump to testcontainers java 1.16.3. I guess that would be a different pull request?

Also, in the original java k3s module test, a special log consumer Slf4jLogConsumer is used: https://github.com/testcontainers/testcontainers-java/blob/master/modules/k3s/src/test/java/org/testcontainers/k3s/OfficialClientK3sContainerTest.java ``` K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1")) .withLogConsumer(new Slf4jLogConsumer(log)) ``` Do we have any examples...

> I have also experienced this error and this was my resolution: > > https://stackoverflow.com/questions/59701024/cannot-create-play-evolutions-table > > A basic config to postgres and like the stackoverflow user, changing from 2...

> I had a look and think having `DefaultSlickApi` also inject `ApplicationEvolutions` should help fixing the problem: > > https://github.com/playframework/play-slick/blob/abe0d9ac3e9dd044c475644e4dbb7d7bb996989f/src/core/src/main/scala/play/api/db/slick/SlickApi.scala#L40-L44 so I guess to try this I would have to...

edit: got it to compile (without the new injection) by adding, ``` dependencyOverrides += "org.scala-lang.modules" % "scala-xml_2.13" % "2.1.0" dependencyOverrides += "com.typesafe.slick" % "slick_2.13" % "3.4.1" ``` now off to...