summaryrefslogtreecommitdiff
path: root/Mavenfile
diff options
context:
space:
mode:
authorChristian Meier <m.kristian@web.de>2015-02-02 18:47:02 +0100
committerChristian Meier <m.kristian@web.de>2015-02-26 17:33:11 +0100
commitb2dab9e80c62776138b4b63aa0b197e99033f239 (patch)
treeb7c466ece08cceb045b66815acbb8dfc5becbeea /Mavenfile
parent3ddffabc91bee3ba136a9367f24083b6bf9fd7ef (diff)
downloadpsych-b2dab9e80c62776138b4b63aa0b197e99033f239.tar.gz
setup java platform gem
use maven to resolve jar dependencies for compilation. setup jar-dependencies to install the snakeyaml jar when installing the gem via rubygems or bundler. added java code to reflect the snakeyaml vesion which got finally loaded into the jruby-classloader.
Diffstat (limited to 'Mavenfile')
-rw-r--r--Mavenfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Mavenfile b/Mavenfile
new file mode 100644
index 0000000..93d4348
--- /dev/null
+++ b/Mavenfile
@@ -0,0 +1,9 @@
+#-*- mode: ruby -*-
+
+pom 'org.jruby:jruby:9.0.0.0.pre1', :scope => :provided
+
+jar 'org.yaml:snakeyaml:${snakeyaml.version}'
+
+plugin :dependency, '2.8', :outputFile => 'pkg/classpath'
+
+# vim: syntax=Ruby