Publish of Github pages from Gradle.

This commit is contained in:
R. Tyler Croy 2015-09-16 09:05:50 -07:00
parent cffd11874b
commit 83ecb857eb
44 changed files with 286 additions and 100 deletions

View File

@ -0,0 +1,138 @@
<html>
<head>
<link href='/stylesheets/foundation.css' rel='stylesheet'>
<link href='/stylesheets/jrubygradle.css' rel='stylesheet'>
<link href='/news.atom' rel='alternate' title='JRuby/Gradle News' type='application/atom+xml'>
<title>
Deprecated version of JRuby for JRubyJar
</title>
</head>
<body>
<a href='https://github.com/jruby-gradle'>
<img alt='Fork me on GitHub' data-canonical-src='https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png' src='https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67' style='position: absolute; top: 0; right: 0; border: 0;'>
</a>
<div id='main_nav'>
<ul>
<li>
<a href='/'>
Home
</a>
</li>
<li>
<a href='/docs/'>
Documentation
</a>
</li>
<li>
<a href='/community/'>
Community
</a>
</li>
<li>
<a href='/news/'>
News
</a>
</li>
<li>
<a href='/download/'>
Download
</a>
</li>
<li>
<a href='https://travis-ci.org/jruby-gradle/jruby-gradle-plugin'>
<img src='https://travis-ci.org/jruby-gradle/jruby-gradle-plugin.svg?branch=master'>
</a>
</li>
<li>
<a href='https://bintray.com/jruby-gradle/plugins'>
<img src='https://api.bintray.com/packages/jruby-gradle/plugins/jruby-gradle-plugin/images/download.svg'>
</a>
</li>
</ul>
</div>
<div id='content'>
<h1>
Deprecated version of JRuby for JRubyJar
</h1>
<div class="sect1">
<h2 id="what-s-going-on"><a class="anchor" href="#what-s-going-on"></a>What&#8217;s going on?</h2>
<div class="sectionbody">
<div class="paragraph">
<p>Starting with JRuby <a href="http://jruby.org/2015/05/05/jruby-1-7-20.html">1.7.20</a>
there were substantial improvements introduced to JRuby core which make running
JRuby in an "embedded" scenario more reliable. Packing a <code>JRubyJar</code> being a
fairly typical "embedded JRuby" use-case, there is certain functionality that
relies on these improvements.</p>
</div>
<div class="paragraph">
<p>This does <strong>not</strong> mean older versions of JRuby won&#8217;t work in <code>JRubyJar</code>
archives but rather: you are <em>likely</em> going to experience problems with a more
complex use-case on an older JRuby. For example, Rails applications will not
function properly if embedded in a <code>.jar</code> with JRuby 1.7.19.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="how-to-fix-it"><a class="anchor" href="#how-to-fix-it"></a>How to fix it</h2>
<div class="sectionbody">
<div class="paragraph">
<p>Since JRuby/Gradle 1.0 and later default to
<a href="http://jruby.org/2015/07/22/jruby-9-0-0-0.html">9.0.0.0</a> and later, the
easiest fix is to stop overriding the default (read: latest stable) JRuby
version enummerated by the plugin.</p>
</div>
<div class="paragraph">
<p>If the latest is viable for the project you&#8217;re working with, at least update
the version to something later than
<a href="http://jruby.org/2015/08/20/jruby-1-7-22.html">1.7.22</a> via:</p>
</div>
<div class="listingblock">
<div class="title">build.gradle</div>
<div class="content">
<pre class="CodeRay highlight nowrap"><code data-lang="gradle">jruby {
defaultVersion '1.7.22'
}</code></pre>
</div>
</div>
<div class="sect2">
<h3 id="okay-that-didn-t-work"><a class="anchor" href="#okay-that-didn-t-work"></a>Okay that didn&#8217;t work</h3>
<div class="paragraph">
<p>If for whatever reason you cannot upgrade your version of JRuby, you can try to
disable the embedded behavior in the <code>JRubyJar</code> and switch Jar&#8217;s Main-Class to
a "self-extracting" main provided by
<a href="https://github.com/jruby/jruby-mains">jruby-mains</a>.</p>
</div>
<div class="paragraph">
<p>This is <strong>untested as of this document&#8217;s writing</strong> but the basic idea is that
instead of trying to execute the Ruby code from a fully embedded scenario, the
self-extracting Main will first unzip the jar file into <code>/tmp</code> before setting
up the JRuby environment.</p>
</div>
<div class="listingblock">
<div class="title">build.gradle</div>
<div class="content">
<pre class="CodeRay highlight nowrap"><code data-lang="gradle">jrubyJar {
mainClass 'org.jruby.mains.ExtractingMain'
}</code></pre>
</div>
</div>
</div>
</div>
</div>
<div class="sect1">
<h2 id="links"><a class="anchor" href="#links"></a>Links</h2>
<div class="sectionbody">
<div class="ulist">
<ul>
<li>
<p><a href="https://github.com/jruby-gradle/jruby-gradle-plugin/issues/191">issue
#191</a> outlines the feature request that led to this behavior being introduced</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr>
</body>
</html>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:49 PDT 2015 -->
<title>GemUtils.OverwriteAction (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>GemUtils.OverwriteAction (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GemUtils.OverwriteAction (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="GemUtils.OverwriteAction (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:49 PDT 2015 -->
<title>GemUtils (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>GemUtils (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GemUtils (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="GemUtils (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:49 PDT 2015 -->
<title>GenerateGradleRb (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>GenerateGradleRb (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GenerateGradleRb (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="GenerateGradleRb (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyExec (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>JRubyExec (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyExec (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyExec (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyPlugin (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyPlugin (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyPlugin (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyPlugin (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyPluginExtension (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyPluginExtension (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyPluginExtension (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyPluginExtension (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyPrepare (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyPrepare (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyPrepare (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyPrepare (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:49 PDT 2015 -->
<title>GemVersion (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>GemVersion (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GemVersion (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="GemVersion (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:49 PDT 2015 -->
<title>GemVersionResolver (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:36 PDT 2015 -->
<title>GemVersionResolver (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GemVersionResolver (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="GemVersionResolver (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyExecDelegate (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyExecDelegate (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyExecDelegate (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyExecDelegate (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyExecTraits (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyExecTraits (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyExecTraits (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyExecTraits (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>JRubyExecUtils (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>JRubyExecUtils (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyExecUtils (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="JRubyExecUtils (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:50 PDT 2015 -->
<title>RubygemsServlet (jruby-gradle-base-plugin 1.1.1 API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:37 PDT 2015 -->
<title>RubygemsServlet (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RubygemsServlet (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="RubygemsServlet (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>com.github.jrubygradle.internal (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>com.github.jrubygradle.internal (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="keywords" content="com.github.jrubygradle.internal package">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" title="Style">
@ -11,7 +11,7 @@
<script type="text/javascript">
function windowTitle()
{
parent.document.title="com.github.jrubygradle.internal (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="com.github.jrubygradle.internal (jruby-gradle-base-plugin 1.1.2 API)";
}
</script>
<noscript>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>com.github.jrubygradle (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>com.github.jrubygradle (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="keywords" content="com.github.jrubygradle package">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" title="Style">
@ -11,7 +11,7 @@
<script type="text/javascript">
function windowTitle()
{
parent.document.title="com.github.jrubygradle (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="com.github.jrubygradle (jruby-gradle-base-plugin 1.1.2 API)";
}
</script>
<noscript>

View File

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Deprecated API (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>Deprecated API (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated API (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="Deprecated API (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -5,7 +5,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>API Help (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>API Help (jruby-gradle-base-plugin 1.1.2 API)</title>
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">
<meta name="date" content="2015-09-16">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="API Help (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -4,14 +4,14 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Index (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>Index (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="Index (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Index (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>Index (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Overview (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>Overview (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>Overview (jruby-gradle-base-plugin 1.1.1 API)</title>
<title>Overview (jruby-gradle-base-plugin 1.1.2 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">
<link rel ="stylesheet" type="text/css" href="stylesheet.css" title="Style">
@ -12,7 +12,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Overview (jruby-gradle-base-plugin 1.1.1 API)";
parent.document.title="Overview (jruby-gradle-base-plugin 1.1.2 API)";
}
//-->
</script>
@ -46,7 +46,7 @@ if (location.href.indexOf('is-external=true') == -1) {
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">jruby-gradle-base-plugin 1.1.1 API</h1>
<h1 class="title">jruby-gradle-base-plugin 1.1.2 API</h1>
</div>
<div class="header">

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:54 PDT 2015 -->
<title>JRubyJar.Type (jruby-gradle-jar-plugin 1.1.1)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:42 PDT 2015 -->
<title>JRubyJar.Type (jruby-gradle-jar-plugin 1.1.2)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyJar.Type (jruby-gradle-jar-plugin 1.1.1)";
parent.document.title="JRubyJar.Type (jruby-gradle-jar-plugin 1.1.2)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:53 PDT 2015 -->
<title>JRubyJar (jruby-gradle-jar-plugin 1.1.1)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:41 PDT 2015 -->
<title>JRubyJar (jruby-gradle-jar-plugin 1.1.2)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyJar (jruby-gradle-jar-plugin 1.1.1)";
parent.document.title="JRubyJar (jruby-gradle-jar-plugin 1.1.2)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:54 PDT 2015 -->
<title>JRubyJarPlugin (jruby-gradle-jar-plugin 1.1.1)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:42 PDT 2015 -->
<title>JRubyJarPlugin (jruby-gradle-jar-plugin 1.1.2)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyJarPlugin (jruby-gradle-jar-plugin 1.1.1)";
parent.document.title="JRubyJarPlugin (jruby-gradle-jar-plugin 1.1.2)";
}
//-->
</script>
@ -136,6 +136,19 @@ extends java.lang.Object
<td class="colLast"><code><strong><a href="#apply(org.gradle.api.Project)">apply</a></strong>(org.gradle.api.Project project)</code><br></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</strong></code></td>
<td class="colLast"><code><strong><a href="#checkJRubyVersions(org.gradle.api.Project)">checkJRubyVersions</a></strong>(org.gradle.api.Project project)</code><br>Check our configured jruby versions to see if any of them are old enough
to cause problems with a packed jar
<https://github.com/jruby-gradle/jruby-gradle-plugin/issues/191></td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</strong></code></td>
<td class="colLast"><code><strong><a href="#isJRubyVersionDeprecated(java.lang.String)">isJRubyVersionDeprecated</a></strong>(java.lang.String version)</code><br>Determine whether the version of the JRuby provided is deprecated as far
as the jar plugin is concerned. </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</strong></code></td>
<td class="colLast"><code><strong><a href="#updateTestTask(org.gradle.api.Project)">updateTestTask</a></strong>(org.gradle.api.Project project)</code><br></td>
@ -199,6 +212,28 @@ extends java.lang.Object
</li>
</ul>
<a name="checkJRubyVersions(org.gradle.api.Project)"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>void <strong>checkJRubyVersions</strong>(org.gradle.api.Project project)</h4>
<p> Check our configured jruby versions to see if any of them are old enough
to cause problems with a packed jar
<https://github.com/jruby-gradle/jruby-gradle-plugin/issues/191>
</p>
</li>
</ul>
<a name="isJRubyVersionDeprecated(java.lang.String)"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>boolean <strong>isJRubyVersionDeprecated</strong>(java.lang.String version)</h4>
<p> Determine whether the version of the JRuby provided is deprecated as far
as the jar plugin is concerned. Deprecated means that the version is unlikely
to produce a useful artifact due to missing functionality in JRuby core
<DL><DT><B>Returns:</B></DT><DD>True if we consider this version deprecated/problematic for the jar plugin</DD></DL><DL><DT><B>Parameters:</B></DT><DD>version</DD></DL></p>
</li>
</ul>
<a name="updateTestTask(org.gradle.api.Project)"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:53 PDT 2015 -->
<title>JRubyDirInfo (jruby-gradle-jar-plugin 1.1.1)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:41 PDT 2015 -->
<title>JRubyDirInfo (jruby-gradle-jar-plugin 1.1.2)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyDirInfo (jruby-gradle-jar-plugin 1.1.1)";
parent.document.title="JRubyDirInfo (jruby-gradle-jar-plugin 1.1.2)";
}
//-->
</script>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>com.github.jrubygradle.jar.internal (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>com.github.jrubygradle.jar.internal (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta name="keywords" content="com.github.jrubygradle.jar.internal package">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" title="Style">
@ -11,7 +11,7 @@
<script type="text/javascript">
function windowTitle()
{
parent.document.title="com.github.jrubygradle.jar.internal (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="com.github.jrubygradle.jar.internal (jruby-gradle-jar-plugin 1.1.2 API)";
}
</script>
<noscript>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>com.github.jrubygradle.jar (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>com.github.jrubygradle.jar (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta name="keywords" content="com.github.jrubygradle.jar package">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" title="Style">
@ -11,7 +11,7 @@
<script type="text/javascript">
function windowTitle()
{
parent.document.title="com.github.jrubygradle.jar (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="com.github.jrubygradle.jar (jruby-gradle-jar-plugin 1.1.2 API)";
}
</script>
<noscript>

View File

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Deprecated API (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>Deprecated API (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated API (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="Deprecated API (jruby-gradle-jar-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -5,7 +5,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>API Help (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>API Help (jruby-gradle-jar-plugin 1.1.2 API)</title>
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">
<meta name="date" content="2015-09-16">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="API Help (jruby-gradle-jar-plugin 1.1.2 API)";
}
//-->
</script>

View File

@ -4,14 +4,14 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Index (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>Index (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="Index (jruby-gradle-jar-plugin 1.1.2 API)";
}
//-->
</script>
@ -130,6 +130,10 @@ if (location.href.indexOf('is-external=true') == -1) {
<h2 class="title">C</h2>
<dl>
<dt><span class="strong"><a href="com/github/jrubygradle/jar/JRubyJarPlugin.html#checkJRubyVersions(org.gradle.api.Project)" title="Method in JRubyJarPlugin">checkJRubyVersions(Project)</a></span> - Method in <a href="com/github/jrubygradle/jar/JRubyJarPlugin.html">JRubyJarPlugin</a>
</dt><dd> <div class="block">Check our configured jruby versions to see if any of them are old enough
to cause problems with a packed jar
<https://github.com/jruby-gradle/jruby-gradle-plugin/issues/191></div></dd>
<dt><span class="strong"><a href="com/github/jrubygradle/jar/JRubyJar.html#customConfigName" title="Field in JRubyJar">customConfigName</a></span> - Field in <a href="com/github/jrubygradle/jar/JRubyJar.html">JRubyJar</a>
</dt><dd> <div class="block"></div></dd>
</dl>
@ -199,6 +203,9 @@ if (location.href.indexOf('is-external=true') == -1) {
<dt><span class="strong"><a href="com/github/jrubygradle/jar/JRubyJar.html#initScript(java.lang.Object)" title="Method in JRubyJar">initScript(Object)</a></span> - Method in <a href="com/github/jrubygradle/jar/JRubyJar.html">JRubyJar</a>
</dt><dd> <div class="block"></div></dd>
<dt><span class="strong"><a href="com/github/jrubygradle/jar/JRubyJarPlugin.html#isJRubyVersionDeprecated(java.lang.String)" title="Method in JRubyJarPlugin">isJRubyVersionDeprecated(String)</a></span> - Method in <a href="com/github/jrubygradle/jar/JRubyJarPlugin.html">JRubyJarPlugin</a>
</dt><dd> <div class="block">Determine whether the version of the JRuby provided is deprecated as far
as the jar plugin is concerned. </div></dd>
</dl>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Index (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>Index (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Overview (jruby-gradle-jar-plugin 1.1.1)</title>
<title>Overview (jruby-gradle-jar-plugin 1.1.2)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>Overview (jruby-gradle-jar-plugin 1.1.1 API)</title>
<title>Overview (jruby-gradle-jar-plugin 1.1.2 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">
<link rel ="stylesheet" type="text/css" href="stylesheet.css" title="Style">
@ -12,7 +12,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Overview (jruby-gradle-jar-plugin 1.1.1 API)";
parent.document.title="Overview (jruby-gradle-jar-plugin 1.1.2 API)";
}
//-->
</script>
@ -46,7 +46,7 @@ if (location.href.indexOf('is-external=true') == -1) {
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">jruby-gradle-jar-plugin 1.1.1</h1>
<h1 class="title">jruby-gradle-jar-plugin 1.1.2</h1>
</div>
<div class="header">

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:57 PDT 2015 -->
<title>JRubyWar (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:45 PDT 2015 -->
<title>JRubyWar (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyWar (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="JRubyWar (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>

View File

@ -6,8 +6,8 @@
<html>
<head>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 08:42:58 PDT 2015 -->
<title>JRubyWarPlugin (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<!-- Generated by groovydoc (2.3.3) on Wed Sep 16 09:05:46 PDT 2015 -->
<title>JRubyWarPlugin (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta name="date" content="2015-09-16">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -17,7 +17,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JRubyWarPlugin (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="JRubyWarPlugin (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>com.github.jrubygradle.war (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>com.github.jrubygradle.war (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta name="keywords" content="com.github.jrubygradle.war package">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" title="Style">
@ -11,7 +11,7 @@
<script type="text/javascript">
function windowTitle()
{
parent.document.title="com.github.jrubygradle.war (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="com.github.jrubygradle.war (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
</script>
<noscript>

View File

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Deprecated API (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>Deprecated API (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated API (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="Deprecated API (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>

View File

@ -5,7 +5,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>API Help (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>API Help (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">
<meta name="date" content="2015-09-16">
@ -14,7 +14,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="API Help (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>

View File

@ -4,14 +4,14 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.3.3) on -->
<title>Index (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>Index (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta name="date" content="2015-09-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="Index (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Index (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>Index (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Overview (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>Overview (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>Overview (jruby-gradle-war-plugin 1.1.1-alpha API)</title>
<title>Overview (jruby-gradle-war-plugin 1.1.2-alpha API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="Overview">
<link rel ="stylesheet" type="text/css" href="stylesheet.css" title="Style">
@ -12,7 +12,7 @@
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Overview (jruby-gradle-war-plugin 1.1.1-alpha API)";
parent.document.title="Overview (jruby-gradle-war-plugin 1.1.2-alpha API)";
}
//-->
</script>
@ -46,7 +46,7 @@ if (location.href.indexOf('is-external=true') == -1) {
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">jruby-gradle-war-plugin 1.1.1-alpha API</h1>
<h1 class="title">jruby-gradle-war-plugin 1.1.2-alpha API</h1>
</div>
<div class="header">

View File

@ -36,6 +36,12 @@
<changefreq>never</changefreq>
</url>
<url>
<loc>http://jruby-gradle.org/errors/jar-deprecated-jrubyversion/</loc>
<lastmod>2015-09-16</lastmod>
<priority>0.1</priority>
<changefreq>never</changefreq>
</url>
<url>
<loc>http://jruby-gradle.org/errors/jrubyexec-version-conflict/</loc>
<lastmod>2015-09-16</lastmod>
<priority>0.1</priority>