require "java/java" module Buildr module OpenJPA VERSION = "0.9.7-incubating" REQUIRES = [ "org.apache.openjpa:openjpa-all:jar:#{VERSION}", "commons-collections:commons-collections:jar:3.1", "commons-dbcp:commons-dbcp:jar:1.2.1", "commons-lang:commons-lang:jar:2.1", "commons-pool:commons-pool:jar:1.2", "javax.persistence:persistence-api:jar:1.0", "org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:1.0", "org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.0", "net.sourceforge.serp:serp:jar:1.11.0" ] Java.rjb.classpath << REQUIRES class << self def enhance(options) rake_check_options options, :classpath, :properties, :output artifacts = Buildr.artifacts(options[:classpath]).each { |a| a.invoke }.map(&:to_s) + [options[:output].to_s] properties = file(options[:properties]).tap { |task| task.invoke }.to_s Ant.executable("openjpa") do |ant| ant.taskdef :name=>"enhancer", :classname=>"org.apache.openjpa.ant.PCEnhancerTask", :classpath=>requires.join(File::PATH_SEPARATOR) ant.enhancer :directory=>options[:output].to_s do config :propertiesFile=>properties classpath :path=>artifacts.join(File::PATH_SEPARATOR) end end end def mapping_tool(options) rake_check_options options, :classpath, :properties, :sql, :action artifacts = Buildr.artifacts(options[:classpath]).each{ |a| a.invoke }.map(&:to_s) properties = file(options[:properties].to_s).tap { |task| task.invoke }.to_s Ant.executable("openjpa") do |ant| ant.taskdef :name=>"mapping", :classname=>"org.apache.openjpa.jdbc.ant.MappingToolTask", :classpath=>requires.join(File::PATH_SEPARATOR) ant.mapping :schemaAction=>options[:action], :sqlFile=>options[:sql].to_s, :ignoreErrors=>"true" do config :propertiesFile=>properties classpath :path=>artifacts.join(File::PATH_SEPARATOR) end end end private def requires() @requires ||= Buildr.artifacts(REQUIRES).each { |artifact| artifact.invoke }.map(&:to_s) end end def open_jpa_enhance(options = nil) jpa_options = { :output=>compile.target, :classpath=>compile.classpath, :properties=>path_to("src/main/resources/META-INF/persistence.xml") } OpenJPA.enhance jpa_options.merge(options || {}) end end class Project include OpenJPA end end