outworkers / reactiveneo

[DISCONTINUED] Reactive type-safe Scala driver for Neo4J
http://outworkers.github.io/reactiveneo
GNU General Public License v2.0
69 stars 7 forks source link

Can you add your module to a repository for sbt ? #9

Closed maximepvrt closed 9 years ago

alexflav23 commented 9 years ago

@maximepvrt We will publish to Maven Central very shortly, starting with today even. I will let you know as soon as it's live.

maximepvrt commented 9 years ago

Thanks, but your module is empty when it's downloaded from maven :smile:

alexflav23 commented 9 years ago

@maximepvrt That sounds fairly weird. If you explicitly depend on the dsl and testing modules you should be fine.

maximepvrt commented 9 years ago

After unzipped your http://search.maven.org/remotecontent?filepath=com/websudos/reactiveneo_2.10/0.3.0/reactiveneo_2.10-0.3.0.jar, there is just the MANIFEST.MF file

alexflav23 commented 9 years ago

You should depend only on the submodules:

libraryDependencies ++= Seq(
  "com.websudos" %% "reactiveneo-dsl" % "0.3.0",
  "com.websudos" %% "reactiveneo-testing" % "0.3.0",
)
maximepvrt commented 9 years ago

thanks you so much !