assemblee-virtuelle / semforms

semantic CRUD application based on semantic_forms
1 stars 0 forks source link

Error with deductions / semantic_forms dependency not resolved #2

Closed balessan closed 8 years ago

balessan commented 8 years ago

When running the

sbt eclipse with-source=true

command, because of the current definition of the semantic_forms dependency in the build.sbt file, I got an unresolved dependency path error:

Note: Unresolved dependencies path:
[warn]      deductions:semantic_forms_2.11:1.0-SNAPSHOT (/workspace/semantic_forms/scala/semforms/build.sbt#L12-13)
[warn]        +- virtual-assembly:semantic_forms_av_2.11:1.0-SNAPSHOT

My workaround has been to use the same dependency resolution command as in forms_play aka:

lazy val semantic_forms_play = (project in file("."))
        .dependsOn(semantic_forms)
        .enablePlugins(PlayScala)

Instead of the previous

libraryDependencies += "deductions" %% "semantic_forms" % "1.0-SNAPSHOT"

Not sure yet if it does the trick, need to download everything. Am I missing something here ? I did add the dependency in eclipse before trying to modify the build.sbt file.

balessan commented 8 years ago

I probably need to use the update_server.sh script, isn't it ?

balessan commented 8 years ago

Issue handled and explained in the README.md