Skip to content

Instantly share code, notes, and snippets.

@lopex
Created October 27, 2016 22:54
Show Gist options
  • Save lopex/439f94879a9f30b96c1656680e1d1075 to your computer and use it in GitHub Desktop.
Save lopex/439f94879a9f30b96c1656680e1d1075 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>0.0</version>
<repositories>
<repository>
<id>rubygems-release</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>9.1.5.0</version>
</dependency>
<dependency>
<groupId>net.sf.jt400</groupId>
<artifactId>jt400</artifactId>
<version>9.1</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>sequel</artifactId>
<version>4.39.0</version>
<type>gem</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>1.1.5</version>
<configuration>
<file>main.rb</file>
<!-- <includeDependencies>true</includeDependencies> -->
<!-- <extensions>true</extensions> -->
<!-- <script>puts 'HELLO WORLD'</script> -->
<!-- <jrubyVersion>9.1.5.0</jrubyVersion> -->
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment