forked from mkristian/dm-hibernate-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mavenfile
31 lines (24 loc) · 962 Bytes
/
Mavenfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- mode: ruby -*-
jar "org.hibernate:hibernate-core", "3.3.2.GA"
jar "org.hibernate:hibernate-annotations", "3.4.0.GA"
jar "org.hibernate:hibernate-tools", "3.2.4.GA"
jar "javax.transaction:jta", "1.1"
jar 'javassist:javassist', '3.8.0.GA'
jar 'mysql:mysql-connector-java', '5.1.9'
jar 'postgresql:postgresql', '8.4-701.jdbc4'
jar 'com.h2database:h2', '1.2.138'
jar 'org.apache.derby:derby' ,'10.5.3.0_1'
jar 'org.hsqldb:hsqldb', '2.0.0'
# not sure of this is needed
jar 'org.jruby:jruby-complete', '1.6.4'
test_jar 'org.slf4j:slf4j-log4j12', '1.5.2'
test_jar 'log4j:log4j', '1.2.14'
repository(:jboss).url 'https://repository.jboss.org/nexus/content/groups/public-jboss/'
properties['jruby.jvmargs'] = '-Xmx1024m'
packaging 'java-gem'
build.final_name '${project.artifactId}_ext'
# copy the pom to pom.xml so java IDEs can use it
execute_in_phase(:initialize) do
require 'fileutils'
FileUtils.cp("dm-hibernate-adapter.gemspec.pom", "pom.xml")
end