Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix versions missed by dump_poms.
  • Loading branch information
headius committed Jan 16, 2015
1 parent 68d281e commit 7972c8b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Expand Up @@ -336,7 +336,7 @@ rake maven:dump_poms

about the ruby DSL for those poms just look in the existing pom.rb/Mavenfile files - there are plenty of examples for all kind of situations. (more documentation to come).

regular maven uses the the jruby from the installation, i.e. 9.0.0.0.dev. this also means that a regular maven run does not depend under the hood on any other jruby versions from maven central.
regular maven uses the the jruby from the installation, i.e. 9.0.0.0. this also means that a regular maven run does not depend under the hood on any other jruby versions from maven central.

at some parts there are **inline** plugins in **pom.rb** or **Mavenfile** which will work directly with regular maven where there is a special plugin running those ruby parts. see **./lib/pom.rb**.

Expand Down
2 changes: 1 addition & 1 deletion ext/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-parent</artifactId>
<version>9.0.0.0.dev-SNAPSHOT</version>
<version>9.0.0.0.pre1</version>
</parent>
<artifactId>jruby-ext</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion ext/readline/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-ext</artifactId>
<version>9.0.0.0.dev-SNAPSHOT</version>
<version>9.0.0.0.pre1</version>
</parent>
<groupId>rubygems</groupId>
<artifactId>jruby-readline</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ext/ripper/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-ext</artifactId>
<version>9.0.0.0.dev-SNAPSHOT</version>
<version>9.0.0.0.pre1</version>
</parent>
<groupId>rubygems</groupId>
<artifactId>jruby-ripper</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions maven/jruby-jars/pom.xml
Expand Up @@ -73,7 +73,7 @@ freezing to) a specific jruby-complete jar version.</description>
</extension>
</extensions>
<directory>${basedir}/pkg</directory>
<finalName>${project.artifactId}-9.0.0.0.pre1-SNAPSHOT</finalName>
<finalName>${project.artifactId}-9.0.0.0.pre1</finalName>
<plugins>
<plugin>
<groupId>de.saumya.mojo</groupId>
Expand Down Expand Up @@ -120,7 +120,7 @@ freezing to) a specific jruby-complete jar version.</description>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<properties>
<ruby.version>9.0.0.0.pre1-SNAPSHOT</ruby.version>
<ruby.version>9.0.0.0.pre1</ruby.version>
<gem.home>${project.build.directory}/rubygems</gem.home>
<gem.path>${project.build.directory}/rubygems</gem.path>
</properties>
Expand Down

0 comments on commit 7972c8b

Please sign in to comment.