prepare release

This commit is contained in:
Christian Meier 2015-04-20 16:10:50 +05:30
parent b4afb5a494
commit 58c652b673
2 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#-*- mode: ruby -*-
id 'de.saumya.mojo:jruby-mains:0.1.1-SNAPSHOT'
id 'de.saumya.mojo:jruby-mains:0.2.0'
repository( :id => 'rso-public-grid',
:url => 'https://repository.sonatype.org/content/groups/sonatype-public-grid',
@ -20,12 +20,13 @@ url 'http://github.com/#{github}'
description 'a set of main method to launch a jruby application from within a jar or war file or start jetty as executable'
scope :provided do
pom 'org.jruby:jruby:1.7.20-SNAPSHOT'
jar 'org.jruby:jruby:${jruby.version}'
jar 'org.eclipse.jetty:jetty-server:${jetty.version}'
jar 'org.eclipse.jetty:jetty-webapp:${jetty.version}'
end
properties( 'jetty.version' => '8.1.14.v20131031',
properties( 'jruby.version' => '1.7.19',
'jetty.version' => '8.1.14.v20131031',
'project.build.sourceEncoding' => 'utf-8',
'polyglot.dump.pom' => 'pom.xml' )
@ -65,7 +66,7 @@ plugin :invoker, '1.8' do
:cloneProjectsTo => '${project.build.directory}/it',
:properties => { 'artifact.version' => '${project.version}',
'jruby.version' => '${jruby.version}',
'jruby.plugins.version' => '${jruby.plugins.version}',
'jruby.plugins.version' => '1.0.9',
'bundler.version' => '1.9.2',
# dump pom for the time being - for travis
'polyglot.dump.pom' => 'pom.xml'} )

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.saumya.mojo</groupId>
<artifactId>jruby-mains</artifactId>
<version>0.1.1-SNAPSHOT</version>
<version>0.2.0</version>
<name>jruby-mains</name>
<description>a set of main method to launch a jruby application from within a jar or war file or start jetty as executable</description>
<url>http://github.com/#{github}</url>
@ -35,6 +35,7 @@
</snapshotRepository>
</distributionManagement>
<properties>
<jruby.version>1.7.19</jruby.version>
<jetty.version>8.1.14.v20131031</jetty.version>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
@ -43,8 +44,7 @@
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
<version>1.7.20-SNAPSHOT</version>
<type>pom</type>
<version>${jruby.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -102,7 +102,7 @@
<properties>
<artifact.version>${project.version}</artifact.version>
<jruby.version>${jruby.version}</jruby.version>
<jruby.plugins.version>${jruby.plugins.version}</jruby.plugins.version>
<jruby.plugins.version>1.0.9</jruby.plugins.version>
<bundler.version>1.9.2</bundler.version>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
</properties>