julienrf / play-jsmessages

Library to compute localized messages of your Play application on client side

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

play-jsmessages_2.10;1.6.0: not found

opened this issue · comments

Are you sure that 1.6.0 has been deployed to Maven Central?
Did you release the staged artifacts in sonatype oss nexus?
http://search.maven.org/#search%7Cga%7C1%7Cplay-jsmessages

Same issue here, should we be adding an extra repo?

You are right, for now it is only available on the snapshots repository (https://oss.sonatype.org/#nexus-search;quick~play-jsmessages).

I pushed the 1.6.0 artifact on the sonatype staging repository but it is not yet available. Maybe I did something wrong. In the meanwhile it should work with the following sbt configuration:

resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies += "org.julienrf" %% "play-jsmessages" % "1.6.0-SNAPSHOT"

If you have your staged artifact ready you still need to release it
go to the staging section, right click on the staged release and select release
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-8.a.2.ReleasingaStagingRepository
and you will also need central sync to be set up for your groupId (org.julienrf)
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-9.ActivateCentralSync

Oh you are right. Ok, I’ll do that as soon as possible.

Can you test now and tell me if it is ok for you?

[info] downloading http://repo1.maven.org/maven2/org/julienrf/play-jsmessages_2.10/1.6.0/play-jsmessages_2.10-1.6.0.jar ...
[info]  [SUCCESSFUL ] org.julienrf#play-jsmessages_2.10;1.6.0!play-jsmessages_2.10.jar (1147ms)

Thanks!

Thanks for your quick feedback ;)