jliszka / probability-monad

Apache License 2.0
263 stars 38 forks source link

Release this module on the typesafe repo? #7

Closed markfarrell closed 10 years ago

markfarrell commented 10 years ago

Hi,

Could this project be packaged and released on the typesafe repo? I use SBT at work, yet I cannot add git dependencies to my project due to firewall issues.

jliszka commented 10 years ago

Sure, happy to! It might take a few days to get the repo set up.

Out of curiosity, what are you using it for at work?

markfarrell commented 10 years ago

It seems useful to have access to this piece of software in a system meant to resolve the identities of vessels at tracked locations in the water. I'm helping my mentor out, who is writing a paper, giving mathematical models for doing so. Here's one topic, recursive bayesian estimation (http://en.wikipedia.org/wiki/Recursive_Bayesian_estimation), that I felt this software module would be useful for modelling at first glance. I could be wrong; I'm just seeking out various resources to try to piece this system together.

jliszka commented 10 years ago

Do you mean the typesafe activator? Or do you just want a jar to depend on?

jliszka commented 10 years ago

That sounds neat! Yeah, I think this module would be helpful in exploring those ideas. I have played around with writing a Kalman filter using this module... it's not the most efficient performance-wise, but IMHO it's very clean conceptually :)

markfarrell commented 10 years ago

I think just having a jar to depend on would be ok.

jliszka commented 10 years ago

OK, just published to sonatype. Use this in your build.sbt:

libraryDependencies += "org.jliszka" %% "probability-monad" % "1.0.0"

It might take a while to propagate to maven.org, but you can get to it immediately if you add this:

resolvers += "Sonatype" at "https://oss.sonatype.org/content/groups/public/"
markfarrell commented 10 years ago

Thanks, seems to be working ok. No 2.11 release, though?

jliszka commented 10 years ago

I'll get that tonight.

On Tue, Jul 15, 2014 at 11:56 AM, Mark Farrell notifications@github.com wrote:

Thanks, seems to be working ok. No 2.11 release, though?

— Reply to this email directly or view it on GitHub https://github.com/jliszka/probability-monad/issues/7#issuecomment-49053178 .

markfarrell commented 10 years ago

Sounds good.

jliszka commented 10 years ago

OK published for 2.11.

markfarrell commented 10 years ago

Thanks.