Sha256: da52eb9cfd4af06cf0ab582e374a7b2d3d1fb2ce6af7a76dd0293f4cffed1184
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
#-*- mode: ruby -*- GWT_VERSION = '2.4.0' jar('de.mkristian.gwt:rails-gwt', '0.6.0').scope :provided jar('org.fusesource.restygwt:restygwt', '1.2').scope :provided jar('javax.ws.rs:jsr311-api', '1.1').scope :provided jar('com.google.gwt:gwt-user', GWT_VERSION).scope :provided jar('com.google.gwt.inject:gin', '1.5.0').scope :provided jar('javax.validation:validation-api', '1.0.0.GA').scope :provided jar('javax.validation:validation-api', '1.0.0.GA', 'sources').scope :provided plugin('org.codehaus.mojo:gwt-maven-plugin', GWT_VERSION) do |gwt| gwt.with({ :warSourceDirectory => "${basedir}/public", :webXml => "${basedir}/public/WEB-INF/web.xml", :webappDirectory => "${basedir}/public", :hostedWebapp => "${basedir}/public", :inplace => true, :logLevel => "INFO", :style => "DETAILED", :treeLogger => true, :extraJvmArgs => "-Xmx512m", :runTarget => "<%= application_name %>.html", :includes => "**/<%= application_name %>GWTTestSuite.java" }) gwt.executions.goals << ["clean", "compile", "test"] end plugin(:rails3).in_phase("initialize").execute_goal(:pom).with :force => true #-- Macs need the -d32 -XstartOnFirstThread jvm options --> profile("mac") do |mac| mac.activation.os.family "mac" mac.plugin('org.codehaus.mojo:gwt-maven-plugin').with(:extraJvmArgs => "-d32 -XstartOnFirstThread -Xmx512m") end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
resty-generators-0.6.0 | lib/generators/resty/setup/templates/Mavenfile |