无法安装/使用Grails Release Plugin 2.2.1

10G*_*per 1 grails maven

我试图让Grails 发布插件工作,但遇到了一些麻烦.STS/GGTS附带的当前版本的Grails是2.2.3,所以我不能使用发布插件的最新版本(3.0),因为这需要Grails 2.3.相反,我尝试安装2.2.1版.

我首先将以下内容添加到BuildConfig.groovy并刷新了我的依赖项.

plugins {
... // other plugin dependencies 

    build ':release:2.2.1', ':rest-client-builder:1.0.3', {
        export = false
    }
... // other plugin dependencies 
}
Run Code Online (Sandbox Code Playgroud)

但是当我运行grails maven-install时出现以下错误

| Script 'MavenInstall' not found, did you mean:
   1) UninstallPlugin
   2) InstallPlugin
   3) InstallDependency
   4) InstallJQuery
   5) InstallTemplates
Run Code Online (Sandbox Code Playgroud)

.

.

大量的故障拍摄细节如下.
你只能跳到彼得的答案下面

.

.

然后,我发现了这个JIRA问题,我列出了我的插件并且发布时没有安装,所以我试过了

grails install-plugin release 2.2.1
Run Code Online (Sandbox Code Playgroud)

并刷新了我的依赖项,最终我在GrailsCentralDeployer中出现了编译错误.它找不到grails.plugins.rest.client.RestBuilder,所以我跑了

grails install-plugin rest-client-builder 1.0.3
Run Code Online (Sandbox Code Playgroud)

并刷新我的依赖项,错误消失了.此时,我不确定我添加到BuildConfig.groovy的代码是否真的在做任何事情.

现在,当我跑

grails maven-install --stacktrace
Run Code Online (Sandbox Code Playgroud)

我得到以下内容

| Loading Grails 2.2.3
| Configuring classpath.
| Environment set to development.....
| Packaging Grails application.....
| Error Error executing script MavenInstall: java.lang.ClassNotFoundException: grails.plugins.publish.DistributionManagementInfo (NOTE: Stack trace has been filtered. Use --verbose to see entire trace.)
java.lang.ClassNotFoundException: grails.plugins.publish.DistributionManagementInfo
Run Code Online (Sandbox Code Playgroud)

如果有帮助,这是我的BuildConfig.groovy的内容

removed - refer to edit 2 below
Run Code Online (Sandbox Code Playgroud)

编辑1 这是我的application.properties文件

#Grails Metadata file
#Thu Jul 25 07:05:41 EDT 2013
app.grails.version=2.2.3
app.name=swiper-admin
app.version=0.1
plugins.spring-security-cas=1.0.5
plugins.spring-security-core=1.2.7.3
plugins.spring-security-ldap=1.0.6
Run Code Online (Sandbox Code Playgroud)

我将安全插件从这里移到BuildConfig.groovy,一切正常,所以新文件看起来像这样

#Grails Metadata file
#Thu Jul 25 07:05:41 EDT 2013
app.grails.version=2.2.3
app.name=swiper-admin
app.version=0.1
Run Code Online (Sandbox Code Playgroud)

我的新BuildConfig.groovy看起来像这样.

removed - refer to edit 2 below
Run Code Online (Sandbox Code Playgroud)

我跑了grails clean,然后grails compilegrails maven-install,得到了相同ClassNotFoundException: grails.plugins.publish.DistributionManagementInfo

然后我跑了grails list-plugins --installed,这是输出

removed - refer to edit 2 below
Run Code Online (Sandbox Code Playgroud)

编辑2

@ peter-ledbrook,之前,我看到了你的建议,我已经彻底清理了这个项目.我添加grails.project.work.dir = "target"到我的BuildConfig.groovy然后运行以下

user@computer:~/dev/workspace/swiper-admin$ grails clean
| Application cleaned.
user@computer:~/dev/workspace/swiper-admin$ grails refresh-dependencies
| Dependencies refreshed.
user@computer:~/dev/workspace/swiper-admin$ grails maven-install
| Script 'MavenInstall' not found, did you mean:
   1) UninstallPlugin
   2) InstallPlugin
   3) InstallDependency
   4) InstallJQuery
   5) InstallTemplates
> Please make a selection or enter Q to quit: Q
user@computer:~/dev/workspace/swiper-admin$ grails compile
| Compiling 143 source files

| Compiling 27 source files.
user@computer:~/dev/workspace/swiper-admin$ grails maven-install
| Script 'MavenInstall' not found, did you mean:
   1) UninstallPlugin
   2) InstallPlugin
   3) InstallDependency
   4) InstallJQuery
   5) InstallTemplates
> Please make a selection or enter Q to quit: Q
user@computer:~/dev/workspace/swiper-admin$ 
Run Code Online (Sandbox Code Playgroud)

我的BuildConfig.groovy看起来像这样

grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
grails.project.war.file = "${appName}-${appVersion}.war"
grails.project.work.dir = "target"

grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") { }
    log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve
    legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility

    repositories {
        inherits true // Whether to inherit repository definitions from plugins

        grailsPlugins()
        grailsHome()
        grailsCentral()

        mavenLocal()
        mavenCentral()

        // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
        //mavenRepo "http://snapshots.repository.codehaus.org"
        //mavenRepo "http://repository.codehaus.org"
        //mavenRepo "http://download.java.net/maven/2/"
        //mavenRepo "http://repository.jboss.com/maven2/"
    }

    dependencies { }

    plugins {
        runtime ":hibernate:$grailsVersion"
        runtime ":jquery:1.8.3"
        runtime ":resources:1.2"

        build ":tomcat:$grailsVersion"
        build ':release:2.2.1', ':rest-client-builder:1.0.3', { export = false }

        compile ':cache:1.0.1'
        compile ":db-reverse-engineer:0.5"

        //security
        compile ":spring-security-core:1.2.7.3"
        compile ":spring-security-cas:1.0.5"
        compile ":spring-security-ldap:1.0.6"
    }
}

grails.project.repos.atlassian_nexus.url = "https://atlassian.liberty.edu/nexus/content/groups/public"
grails.project.repos.atlassian_nexus.username = "terskine"
grails.project.repos.default = "atlassian_nexus"
Run Code Online (Sandbox Code Playgroud)

grails list-plugins --installed这个样子

| Loading Grails 2.2.3
| Configuring classpath.
| Environment set to development.....
Plug-ins you currently have installed are listed below:
-------------------------------------------------------------
cache               1.0.1            --  Cache Plugin
db-reverse-engineer 0.5              --  Grails Database Reverse Engineering Plugin
hibernate           2.2.3            --  Hibernate for Grails
jquery              1.8.3            --  JQuery for Grails
resources           1.2              --  Resources
spring-security-cas 1.0.5            --  Jasig CAS support for the Spring Security plugin.
spring-security-core1.2.7.3          --  Spring Security Core Plugin
spring-security-ldap1.0.6            --  LDAP authentication support for the Spring Security plugin.
tomcat              2.2.3            --  Apache Tomcat plugin for Grails
webxml              1.4.1            --  WebXmlConfig
To find more info about plugin type 'grails plugin-info [NAME]'
To install type 'grails install-plugin [NAME] [VERSION]'
For further info visit http://grails.org/Plugins
Run Code Online (Sandbox Code Playgroud)

Pet*_*ook 7

编辑问题是export = false.删除它.我不明白为什么它阻止了插件的安装,所以它可能是Grails中的一个错误.在Grails JIRA中提出一个问题.

以前的答案

你在做什么看起来很好.我只想将这一行添加到开头BuildConfig.groovy:

grails.project.work.dir = "target"
Run Code Online (Sandbox Code Playgroud)

保存然后运行

grails refresh-dependencies
grails maven-install
Run Code Online (Sandbox Code Playgroud)

任何时候似乎都有与类相关的奇怪错误,只需删除整个target目录即可.