错误:无法在本地或存储库中找到gem

时间:2012-04-26 12:53:23

标签: maven maven-2 rubygems gem jruby

我对我的项目进行了整理,发现某些宝石无法从maven安装。 我跑的时候

  

gem install jruby-openssl -v 0.7.2

从命令行我得到以下输出:

  

成功安装jruby-openssl-0.7.2

当我运行maven时出现错误:

  

错误:无法在本地或存储库中找到gem jruby-openssl

有我的pom.xml:

    <dependency>
        <groupId>org.jruby</groupId>
        <artifactId>jruby-complete</artifactId>
        <version>1.5.2</version>
    </dependency>
...

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec.version}</version>
<executions>
    <execution>
        <id>install-gems</id>
        <phase>process-resources</phase>
        <configuration>
            <mainClass>org.jruby.Main</mainClass>
            <arguments>
                <argument>-S</argument>
                <argument>gem</argument>
                <argument>install</argument>
                <argument>jruby-openssl</argument>
                <argument>-v</argument>
                <argument>0.7.2</argument>
                <arguments>rails</arguments>
                <arguments>-v</arguments>
                <arguments>2.3.8</arguments>
                <arguments>rcov</arguments>
                <arguments>-v</arguments>
                <arguments>0.9.11</arguments>
                <arguments>activerecord-jdbcmysql-adapter</arguments>
                <arguments>-v</arguments>
                <arguments>1.2.1</arguments>
                <arguments>will_paginate</arguments>
                <arguments>-v</arguments>
                <arguments>2.3.15</arguments>
                <arguments>validates_timeliness</arguments>
                <arguments>-v</arguments>
                <arguments>2.3.2</arguments>
                <argument>--no-rdoc</argument>
                <argument>--no-test</argument>
                <argument>--user-install</argument>
            </arguments>
        </configuration>
        <goals>
            <goal>java</goal>
        </goals>
    </execution>
</executions>
</plugin>

我不能只安装一些宝石,比如open-ssl,rcov,will_paginate,activerecord-jdbcmysql-adapter。

有没有人有类似的问题?

我使用jruby 1.5.2

1 个答案:

答案 0 :(得分:0)

安装jruby gem使用。

jruby -S gem install jruby-openssl -v 0.7.2

看到这有帮助。