Skip to content

Commit

Permalink
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
@@ -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**.

2 changes: 1 addition & 1 deletion ext/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion ext/readline/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion ext/ripper/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
4 changes: 2 additions & 2 deletions maven/jruby-jars/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
@@ -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>

0 comments on commit 7972c8b

Please sign in to comment.