Skip to content

Commit

Permalink
Fix examples using gem-maven-plugin (#265)
Browse files Browse the repository at this point in the history
* Replace de.saumya.mojo:gem-maven-plugin by org.jruby.maven:gem-maven-plugin
* Replace org.torquebox.mojo:mavengem-wagon by org.jruby.maven:mavengem-wagon
  • Loading branch information
abelsromero authored Apr 9, 2024
1 parent 574b3c1 commit 02c4a89
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions asciidoc-to-html-multipage-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<asciidoctor.maven.plugin.version>3.0.0</asciidoctor.maven.plugin.version>
<asciidoctorj.version>2.5.12</asciidoctorj.version>
<asciidoctor-multipage.version>0.0.16</asciidoctor-multipage.version>
<asciidoctor-multipage.version>0.0.19</asciidoctor-multipage.version>
<jruby.version>9.4.6.0</jruby.version>
</properties>

Expand All @@ -39,16 +39,16 @@
<defaultGoal>process-resources</defaultGoal>
<extensions>
<extension> <!-- this allows us to download gems -->
<groupId>org.torquebox.mojo</groupId>
<groupId>org.jruby.maven</groupId>
<artifactId>mavengem-wagon</artifactId>
<version>1.0.3</version>
<version>2.0.2</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>de.saumya.mojo</groupId>
<groupId>org.jruby.maven</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>2.0.1</version>
<version>3.0.2</version>
<configuration>
<jrubyVersion>${jruby.version}</jrubyVersion>
<gemHome>${project.build.directory}/gems</gemHome>
Expand Down
8 changes: 4 additions & 4 deletions asciidoc-to-revealjs-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
<defaultGoal>process-resources</defaultGoal>
<extensions>
<extension> <!-- this allows us to download gems -->
<groupId>org.torquebox.mojo</groupId>
<groupId>org.jruby.maven</groupId>
<artifactId>mavengem-wagon</artifactId>
<version>1.0.3</version>
<version>2.0.2</version>
</extension>
</extensions>
<plugins>
Expand All @@ -76,9 +76,9 @@
</executions>
</plugin>
<plugin>
<groupId>de.saumya.mojo</groupId>
<groupId>org.jruby.maven</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>2.0.1</version>
<version>3.0.2</version>
<configuration>
<jrubyVersion>${jruby.version}</jrubyVersion>
<gemHome>${project.build.directory}/gems</gemHome>
Expand Down

0 comments on commit 02c4a89

Please sign in to comment.