danielkorzekwa / bayes-scala

Bayesian Networks in Scala
Other
205 stars 39 forks source link

Publish bayes-scala on the Maven central repository #4

Closed erikkaplun closed 10 years ago

erikkaplun commented 10 years ago

Currently the only way of adding bayes-scala as a dependency is copying the source or a compiler .jar to a project's lib directory, am I correct? But it would be really nice if you could just add it to libraryDependencies or a Maven build configuration file.

danielkorzekwa commented 10 years ago

actually, I deployed bayes-scala to my private maven repo:

<repository>
 <id>dk-maven-repo</id>
 <url>https://raw.github.com/danielkorzekwa/dk-maven-repo/master</url>
</repository>

<dependency>
 <groupId>dk.bayes</groupId>
 <artifactId>bayes-scala</artifactId>
 <version>0.2</version>
</dependency>

The version of 0.2 is quite old, feel free to build the release of 0.4 and deploy it to public maven repo.

francisdb commented 9 years ago

There's an other ticket related to this https://github.com/danielkorzekwa/bayes-scala/issues/12