gpc / jms

JMS integration for Grails.
http://grails.org/plugin/jms
16 stars 28 forks source link

Could not find org.grails.plugins:jms:3.0.0 #51

Closed alan-morey closed 2 years ago

alan-morey commented 2 years ago

I've created a new Grails 4 app

grails create-app forms_grails4 

I'm now trying to install the JMS plugin, so I edit the build.gradle file, as per JMS plugin page and add dependency line as follows:

dependencies {
...
    compile "org.grails.plugins:jms:3.0.0"
}

Running ./gradlew build I get error while trying to resolve JMS plugin:

$ ./gradlew build
Downloading https://services.gradle.org/distributions/gradle-5.6.4-bin.zip
.........................................................................................

Welcome to Gradle 5.6.4!

Here are the highlights of this release:
 - Incremental Groovy compilation
 - Groovy compile avoidance
 - Test fixtures for Java projects
 - Manage plugin versions via settings script

For more details see https://docs.gradle.org/5.6.4/release-notes.html

Starting a Gradle Daemon (subsequent builds will be faster)

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'forms_grails4'.
> Could not resolve all files for configuration ':runtime'.
   > Could not find org.grails.plugins:jms:3.0.0.
     Searched in the following locations:
       - https://repo.grails.org/grails/core/org/grails/plugins/jms/3.0.0/jms-3.0.0.pom
       - https://repo.grails.org/grails/core/org/grails/plugins/jms/3.0.0/jms-3.0.0.jar
     Required by:
         project :

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 36s
  1. Have I got the dependency specified correctly?
  2. Is there a different repository I need to add to get access to this version of the JMS plugin?
sbglasius commented 2 years ago

The right coordinate is:

compile 'io.github.gpc:jms:3.0.0'

due to the end of BinTray and the move to Sonatype/Maven Central, where artifacts needs to be signed.

I will get the documentation fixed