hakandilek / play2-crud

Simple CRUD & DAO implementation for play2
Other
142 stars 52 forks source link

Can not get play2-crud working with Play 2.5.1 + Scala 2.11.7 #65

Open sivanookala1979 opened 7 years ago

sivanookala1979 commented 7 years ago

Thanks a lot for such a nice template for CRUD operations play2_crud. It worked fine with the activator. But when I am trying to integrate with the latest version of play (2.5.4) and scala (2.11.7) and I am facing a problem.

I get the following error.

[info] Resolving play2-crud#play2-crud_2.11;0.7.4-SNAPSHOT ...
[warn] Unable to reparse play2-crud#play2-crud_2.11;0.7.4-SNAPSHOT from snapshot repository, using Fri Oct 23 01:36:15 IST 2015
[warn] Choosing snapshot repository for play2-crud#play2-crud_2.11;0.7.4-SNAPSHOT

My build.sbt looks like this

name := """my-second-app"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayJava,PlayEbean)

scalaVersion := "2.11.7"

libraryDependencies ++= Seq(
  javaJdbc,
  cache,
  javaWs, javaJdbc,
  "play2-crud" %% "play2-crud" % "0.7.4-SNAPSHOT",
  "play2-crud" %% "play2-crud" % "0.7.4-SNAPSHOT" classifier "assets"
)

resolvers += "release repository" at  "http://hakandilek.github.com/maven-repo/releases/"

resolvers += "snapshot repository" at "http://hakandilek.github.com/maven-repo/snapshots/"

Can you please suggest how can I fix this. Thanks for your help.

chekoutchi commented 7 years ago

Hi,

Same problem.

Your repositories both seems to be down :

http://hakandilek.github.com/maven-repo/releases/ http://hakandilek.github.com/maven-repo/snapshots/

Within a browser search I get 404 error.

Is it normal?

Thanks