[gradle-1.12] 81/211: Unapply patches from Git master.

Kai-Chung Yan seamlik-guest at moszumanska.debian.org
Wed Jul 1 14:18:11 UTC 2015


This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository gradle-1.12.

commit 47e7721fdfe6b1e9fe80f16965fbf0f3af294368
Author: Damien Raude-Morvan <drazzib at drazzib.com>
Date:   Sun Aug 11 10:58:00 2013 +0200

    Unapply patches from Git master.
    
      * Fix compatibility with Apache Ivy 2.3 (Closes: #713171):
        - d/patches/35_ivy_23.diff: fix FTBFS on downloadRepositoryResource method
        - d/control: {Build,}-Depends on ivy (>= 2.3)
---
 build.gradle                                       | 11 ++---
 buildSrc/build.gradle                              | 14 ++----
 .../org/gradle/build/docs/Docbook2XHtml.groovy     |  4 +-
 .../org/gradle/plugins/pegdown/PegDown.groovy      | 13 +++--
 debian/changelog                                   | 10 ++++
 debian/control                                     |  4 +-
 debian/patches/01_use_debian_jars.diff             |  9 ----
 debian/patches/21_docs.diff                        | 24 ++++------
 debian/patches/24_pegdown.diff                     |  4 +-
 debian/patches/34_disable_code_quality.diff        | 20 ++++++++
 debian/patches/35_ivy_23.diff                      | 54 +++++++++++++++++++++
 debian/patches/series                              |  2 +
 gradle/buildReceipt.gradle                         |  8 ++--
 gradle/dependencies.gradle                         | 56 +++++++++++-----------
 gradle/integTest.gradle                            |  2 +-
 settings.gradle                                    |  4 +-
 subprojects/code-quality/code-quality.gradle       |  4 +-
 .../internal/findbugs/FindBugsExecuter.java        | 10 +---
 subprojects/core-impl/core-impl.gradle             |  4 +-
 .../internal/artifacts/PlexusLoggerAdapter.java    |  4 --
 subprojects/core/core.gradle                       |  4 +-
 .../internal/classpath/DefaultModuleRegistry.java  |  9 ++--
 .../org/gradle/profile/ProfileReportRenderer.java  |  2 +-
 .../resources/org/gradle/reporting/base-style.css  |  2 +-
 .../groovy/org/gradle/util/Matchers.java           |  4 +-
 subprojects/docs/docs.gradle                       | 48 +++++++++----------
 subprojects/docs/src/docs/dsl/dsl.xml              |  4 +-
 subprojects/docs/src/docs/stylesheets/dslHtml.xsl  |  4 +-
 .../docs/src/docs/stylesheets/standaloneHtml.xsl   |  4 +-
 .../docs/src/docs/stylesheets/userGuideHtml.xsl    |  4 +-
 .../src/docs/stylesheets/userGuideHtmlCommon.xsl   |  4 +-
 .../docs/src/docs/stylesheets/userGuidePdf.xsl     |  4 +-
 .../src/docs/stylesheets/userGuideSingleHtml.xsl   |  4 +-
 .../docs/src/docs/userguide/sonarPlugin.xml        |  3 +-
 subprojects/docs/src/docs/userguide/userguide.xml  |  2 +-
 subprojects/javascript/javascript.gradle           |  6 +--
 subprojects/jetty/jetty.gradle                     | 16 +++----
 subprojects/maven/maven.gradle                     |  2 +-
 subprojects/native/native.gradle                   |  7 +--
 .../filesystem/FileSystemServices.java             |  6 ++-
 .../nativeplatform/filesystem/LibCStat.java        | 19 ++++++--
 .../nativeplatform/filesystem/PosixUtil.java       |  4 +-
 .../nativeplatform/jna/JnaBootPathConfigurer.java  | 12 +----
 subprojects/osgi/osgi.gradle                       |  2 +-
 subprojects/performance/performance.gradle         |  2 +-
 subprojects/plugins/plugins.gradle                 |  2 +-
 .../testing/junit/report/DefaultTestReport.java    |  2 +-
 .../internal/tasks/testing/junit/report/style.css  |  2 +-
 subprojects/scala/scala.gradle                     |  5 +-
 .../api/plugins/scala/ScalaBasePlugin.groovy       | 12 ++---
 subprojects/signing/signing.gradle                 |  6 +--
 51 files changed, 253 insertions(+), 215 deletions(-)

diff --git a/build.gradle b/build.gradle
index 8eecb17..d5bca86 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,7 +17,6 @@
 import org.gradle.build.Install
 import org.gradle.build.BuildTypes
 import org.gradle.build.TestReportAggregator
-import org.apache.ivy.plugins.resolver.FileSystemResolver
 
 defaultTasks 'assemble'
 apply plugin: 'java-base'
@@ -87,7 +86,7 @@ ext {
     publishedProjects = [project(':core'), project(':toolingApi'), project(':wrapper'), project(':baseServices'), project(':messaging')]
     pluginProjects = [
         'plugins', 'codeQuality', 'jetty', 'antlr', 'wrapper', 'osgi', 'maven',
-        'ide', 'announce', 'scala', 'signing', 'cpp', 'ear', 'javascript', 'buildComparison',
+        'ide', 'announce', 'scala', 'sonar', 'signing', 'cpp', 'ear', 'javascript', 'buildComparison',
         'diagnostics', 'reporting', 'publish', 'ivy'
     ].collect {
         project(it)
@@ -108,11 +107,7 @@ allprojects {
     group = 'org.gradle'
 
     repositories {
-        add(new FileSystemResolver()) {
-            name = 'repo'
-            addArtifactPattern "/usr/share/java/[module].[ext]"
-            addArtifactPattern "/usr/share/java/[module]-[revision].[ext]"
-        }
+        maven { url 'http://repo.gradle.org/gradle/libs' }
     }
 }
 
@@ -198,4 +193,4 @@ task installAll(type: Install) {
     installDirPropertyName = 'gradle_installPath'
 }
 
-apply from: "gradle/intTestImage.gradle"
+apply from: "gradle/intTestImage.gradle"
\ No newline at end of file
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index f093768..6973939 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -13,7 +13,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-import org.apache.ivy.plugins.resolver.FileSystemResolver
 
 apply plugin: 'groovy'
 apply plugin: 'checkstyle'
@@ -22,14 +21,8 @@ apply plugin: 'idea'
 apply plugin: 'eclipse'
 
 repositories {
-    //maven { url 'http://repo.gradle.org/gradle/libs' }
-    //mavenCentral()
-    //maven { url '/usr/share/maven-repo/' }
-    add(new FileSystemResolver()) {
-        name = 'repo'
-        addArtifactPattern "/usr/share/java/[module].[ext]"
-	addArtifactPattern "/usr/share/java/[module]-[revision].[ext]"
-    }
+    maven { url 'http://repo.gradle.org/gradle/libs' }
+    mavenCentral()
 }
 
 dependencies {
@@ -37,9 +30,10 @@ dependencies {
     compile 'com.google.guava:guava:11.0.2 at jar'
     compile 'commons-lang:commons-lang:2.6 at jar'
     groovy localGroovy()
-    testCompile 'junit:junit4:4.x at jar'
+    testCompile 'junit:junit:4.11 at jar'
     testCompile 'org.spockframework:spock-core:0.7-groovy-1.8 at jar', 'cglib:cglib-nodep:2.2', 'org.objenesis:objenesis:1.2'
 
+    compile "org.pegdown:pegdown:1.1.0"
     compile "org.jsoup:jsoup:1.6.3"
 
     //below dependency was deployed to the repo.gradle.org
diff --git a/buildSrc/src/main/groovy/org/gradle/build/docs/Docbook2XHtml.groovy b/buildSrc/src/main/groovy/org/gradle/build/docs/Docbook2XHtml.groovy
index 6825c9c..2ddf336 100755
--- a/buildSrc/src/main/groovy/org/gradle/build/docs/Docbook2XHtml.groovy
+++ b/buildSrc/src/main/groovy/org/gradle/build/docs/Docbook2XHtml.groovy
@@ -71,8 +71,8 @@ class Docbook2Xhtml extends SourceTask {
                 jvmArgs '-Xmx256m'
                 classpath ClasspathUtil.getClasspathForClass(XslTransformer)
                 classpath this.classpath
-                classpath new File('/usr/share/java/xalan2.jar')
-                systemProperty 'xslthl.config', new File("/usr/share/xml/docbook/stylesheet/docbook-xsl/highlighting/xslthl-config.xml").toURI()
+                classpath new File(stylesheetsDir, 'extensions/xalan27.jar')
+                systemProperty 'xslthl.config', new File("$stylesheetsDir/highlighting/xslthl-config.xml").toURI()
                 systemProperty 'org.apache.xerces.xni.parser.XMLParserConfiguration', 'org.apache.xerces.parsers.XIncludeParserConfiguration'
             }
         }
diff --git a/buildSrc/src/main/groovy/org/gradle/plugins/pegdown/PegDown.groovy b/buildSrc/src/main/groovy/org/gradle/plugins/pegdown/PegDown.groovy
index 19c6f9b..d5718ab 100644
--- a/buildSrc/src/main/groovy/org/gradle/plugins/pegdown/PegDown.groovy
+++ b/buildSrc/src/main/groovy/org/gradle/plugins/pegdown/PegDown.groovy
@@ -21,9 +21,9 @@ import org.gradle.api.tasks.Optional
 import org.gradle.api.tasks.SourceTask
 import org.gradle.api.tasks.OutputFile
 import org.gradle.api.tasks.TaskAction
-//import org.pegdown.Extensions
+import org.pegdown.Extensions
 import org.gradle.api.InvalidUserDataException
-//import org.pegdown.PegDownProcessor
+import org.pegdown.PegDownProcessor
 
 class PegDown extends SourceTask {
 
@@ -50,12 +50,11 @@ class PegDown extends SourceTask {
 
     @TaskAction
     void process() {
-        /*int optionsValue = getCalculatedOptions()
+        int optionsValue = getCalculatedOptions()
         PegDownProcessor processor = new PegDownProcessor(optionsValue)
         String markdown = getSource().singleFile.getText(getInputEncoding())
         String html = processor.markdownToHtml(markdown)
-        getDestination().write(html, getOutputEncoding())*/
-	throw new UnsupportedOperationException("PegDown");
+        getDestination().write(html, getOutputEncoding())
     }
     
     int getCalculatedOptions() {
@@ -64,11 +63,11 @@ class PegDown extends SourceTask {
     
     protected int toOptionValue(String optionName) {
         String upName = val.toUpperCase()
-        /*try {
+        try {
             Extensions."$upName"
         } catch (MissingPropertyException e) {
             throw new InvalidUserDataException("$optionName is not a valid PegDown extension name")
-        }*/
+        }
     }
     
     void options(String... options) {
diff --git a/debian/changelog b/debian/changelog
index 76e87c6..8813f95 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+gradle (1.4-2) UNRELEASED; urgency=low
+
+  * Fix compatibility with Apache Ivy 2.3 (Closes: #713171):
+    - d/patches/35_ivy_23.diff: fix FTBFS on downloadRepositoryResource method
+    - d/control: {Build,}-Depends on ivy (>= 2.3)
+  * d/patches/34_disable_code_quality.diff: Disable some code analysis check
+    to speed-up package build.
+
+ -- Damien Raude-Morvan <drazzib at debian.org>  Sun, 11 Aug 2013 16:13:00 +0200
+
 gradle (1.4-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/debian/control b/debian/control
index 4a384b2..67fd5e7 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: ant (>= 1.8),
                gradle,
                groovy (>= 1.8),
                groovy-doc,
-               ivy,
+               ivy (>= 2.3),
                javahelper,
                junit4,
                libantlr-java,
@@ -103,7 +103,7 @@ Package: libgradle-core-java
 Architecture: all
 Depends: ant,
          groovy (>= 1.8),
-         ivy,
+         ivy (>= 2.3),
          libasm4-java,
          libcommons-codec-java,
          libcommons-collections3-java,
diff --git a/debian/patches/01_use_debian_jars.diff b/debian/patches/01_use_debian_jars.diff
index 1fa4ada..d56dde4 100644
--- a/debian/patches/01_use_debian_jars.diff
+++ b/debian/patches/01_use_debian_jars.diff
@@ -183,15 +183,6 @@ Last-Update: 2012-08-18
      libraries.objenesis,
      'cglib:cglib-nodep:2.2'
  ]
---- a/subprojects/core-impl/core-impl.gradle
-+++ b/subprojects/core-impl/core-impl.gradle
-@@ -69,4 +69,4 @@
-             move(file: plexusSecNoComps, tofile: plexusSec)
-         }
-     }
--}
-\ No newline at end of file
-+}
 --- a/subprojects/core/core.gradle
 +++ b/subprojects/core/core.gradle
 @@ -61,7 +61,7 @@
diff --git a/debian/patches/21_docs.diff b/debian/patches/21_docs.diff
index 6dcc120..61e0110 100644
--- a/debian/patches/21_docs.diff
+++ b/debian/patches/21_docs.diff
@@ -20,7 +20,7 @@ Last-Update: 2012-08-18
          }
 --- a/subprojects/docs/docs.gradle
 +++ b/subprojects/docs/docs.gradle
-@@ -43,22 +43,23 @@
+@@ -43,23 +43,22 @@
  }
  
  configurations {
@@ -39,17 +39,18 @@ Last-Update: 2012-08-18
 +    userGuideTask module('xhtmlrenderer:core-renderer:R8rc1') {
          dependency 'itext:itext:2.0.8 at jar'
      }
-     userGuideTask 'xslthl:xslthl:2.0.1 at jar'
+-    userGuideTask 'xslthl:xslthl:2.0.1 at jar'
  
 -    userGuideStyleSheets 'docbook:docbook-xsl:1.75.2 at zip'
 +    //userGuideStyleSheets 'docbook:docbook-xsl:1.75.2 at zip'
      jquery "jquery:jquery.min:1.8.0 at js"
  
-+    /*
-     fonts \
+-    fonts \
++    /*fonts \
          "lato:regular:6:v0SdcGFAl2aezM9Vq_aFTQ at ttf",
          "lato:regular-italic:6:LqowQDslGv4DmUBAfWa2Vw at ttf",
-@@ -68,6 +69,7 @@
+         "lato:bold:6:DvlFBScY1r-FMtZSYIYoYw at ttf",
+@@ -68,6 +67,7 @@
          "ubuntumono:regular-italic:3:KAKuHXAHZOeECOWAHsRKA-LrC4Du4e_yfTJ8Ol60xk0 at ttf",
          "ubuntumono:bold:3:ceqTZGKHipo8pJj4molytp_TkvowlIOtbR7ePgFOpF4 at ttf",
          "ubuntumono:bold-italic:3:n_d8tv_JOIiYyMXR4eaV9WsGzsqhEorxQDpu60nfWEc at ttf"
@@ -57,21 +58,16 @@ Last-Update: 2012-08-18
  
      groovy libraries.groovy
      testCompile "org.pegdown:pegdown:1.1.0"
-@@ -97,11 +99,11 @@
+@@ -97,7 +97,7 @@
      builtBy 'distDocs'
  }
  outputs.docs = files(docsDir) {
 -    builtBy 'javadocAll', 'groovydocAll', 'userguide', 'dslHtml', 'releaseNotes'
-+    builtBy 'javadocAll', 'groovydocAll', 'userguide', 'dslHtml'
++    builtBy 'javadocAll', 'groovydocAll', 'userguide', 'dslHtml' //, 'releaseNotes'
  }
  
  tasks.withType(Docbook2Xhtml) {
--    dependsOn userguideStyleSheets
-+    //dependsOn userguideStyleSheets
-     classpath = configurations.userGuideTask
-     stylesheetsDir = userguideStyleSheets.destinationDir
- }
-@@ -131,12 +133,12 @@
+@@ -131,12 +131,12 @@
          [it.name, it.bytes.encodeBase64().toString()]
      }
  
@@ -87,7 +83,7 @@ Last-Update: 2012-08-18
      css.inputs.property 'tokens', tokens
      css.filter ReplaceTokens, tokens: tokens
  }
-@@ -176,10 +178,10 @@
+@@ -176,10 +176,10 @@
          include '*.xsl'
      }
      from(cssFiles)
diff --git a/debian/patches/24_pegdown.diff b/debian/patches/24_pegdown.diff
index d20e3ab..8952c2d 100644
--- a/debian/patches/24_pegdown.diff
+++ b/debian/patches/24_pegdown.diff
@@ -70,7 +70,7 @@ Last-Update: 2012-08-18
  apply plugin: 'jsoup'
  apply plugin: 'javascript-base'
  
-@@ -364,10 +363,10 @@
+@@ -362,10 +361,10 @@
      group = 'documentation'
  }
  
@@ -83,7 +83,7 @@ Last-Update: 2012-08-18
      group = "release notes"
      doLast {
          Class.forName("java.awt.Desktop").newInstance().edit(file("src/docs/release/notes.md"))
-@@ -412,14 +411,14 @@
+@@ -410,14 +409,14 @@
      systemProperty "org.gradle.docs.releasenotes.source", releaseNotesMarkdown.source.singleFile
      systemProperty "org.gradle.docs.releasenotes.rendered", new File(releaseNotes.destinationDir, releaseNotes.fileName)
  
diff --git a/debian/patches/34_disable_code_quality.diff b/debian/patches/34_disable_code_quality.diff
new file mode 100644
index 0000000..ffaf30e
--- /dev/null
+++ b/debian/patches/34_disable_code_quality.diff
@@ -0,0 +1,20 @@
+--- a/buildSrc/build.gradle
++++ b/buildSrc/build.gradle
+@@ -16,8 +16,8 @@
+ import org.apache.ivy.plugins.resolver.FileSystemResolver
+ 
+ apply plugin: 'groovy'
+-apply plugin: 'checkstyle'
+-apply plugin: 'codenarc'
++//apply plugin: 'checkstyle'
++//apply plugin: 'codenarc'
+ apply plugin: 'idea'
+ apply plugin: 'eclipse'
+ 
+@@ -48,5 +48,5 @@
+     compile "org.gradle.jarjar:jarjar:1.2.1"
+ }
+ apply from: '../gradle/compile.gradle'
+-apply from: '../gradle/codeQuality.gradle'
++//apply from: '../gradle/codeQuality.gradle'
+ apply from: '../gradle/classycle.gradle'
diff --git a/debian/patches/35_ivy_23.diff b/debian/patches/35_ivy_23.diff
new file mode 100644
index 0000000..2cafd44
--- /dev/null
+++ b/debian/patches/35_ivy_23.diff
@@ -0,0 +1,54 @@
+--- a/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/NoOpRepositoryCacheManager.java
++++ b/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/NoOpRepositoryCacheManager.java
+@@ -55,12 +55,17 @@
+         return null;
+     }
+ 
++    public org.apache.ivy.core.report.ArtifactDownloadReport downloadRepositoryResource(org.apache.ivy.plugins.repository.Resource resource,
++           java.lang.String name, java.lang.String type, java.lang.String extension, org.apache.ivy.core.cache.CacheResourceOptions options, org.apache.ivy.plugins.repository.Repository repository) {
++         return null;
++    }
++
+     public ArtifactDownloadReport download(Artifact artifact, ArtifactResourceResolver resourceResolver, ResourceDownloader resourceDownloader, CacheDownloadOptions options) {
+         ArtifactDownloadReport report = new ArtifactDownloadReport(null);
+         report.setDownloadStatus(DownloadStatus.NO);
+         return report;
+     }
+-
++    
+     public ResolvedModuleRevision cacheModuleDescriptor(DependencyResolver resolver, ResolvedResource orginalMetadataRef, DependencyDescriptor dd, Artifact requestedMetadataArtifact, ResourceDownloader downloader, CacheMetadataOptions options) throws ParseException {
+         return null;
+     }
+--- a/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java
++++ b/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java
+@@ -393,8 +393,7 @@
+             }
+ 
+             DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
+-                    parent.getModuleRevisionId(),
+-                    parent.getResolvedModuleRevisionId(),
++                    parent,
+                     attributes.getValue("location"),
+                     (String[]) extendTypes.toArray(new String[extendTypes.size()]));
+             getMd().addInheritedDescriptor(ed);
+@@ -1203,4 +1202,4 @@
+     public String toString() {
+         return "ivy parser";
+     }
+-}
+\ No newline at end of file
++}
+--- a/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/repositories/cachemanager/AbstractRepositoryCacheManager.java
++++ b/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/repositories/cachemanager/AbstractRepositoryCacheManager.java
+@@ -62,6 +62,11 @@
+         return null;
+     }
+ 
++    public org.apache.ivy.core.report.ArtifactDownloadReport downloadRepositoryResource(org.apache.ivy.plugins.repository.Resource resource,
++           java.lang.String name, java.lang.String type, java.lang.String extension, org.apache.ivy.core.cache.CacheResourceOptions options, org.apache.ivy.plugins.repository.Repository repository) {
++         return null;
++    }
++
+     public void originalToCachedModuleDescriptor(DependencyResolver resolver, ResolvedResource originalMetadataRef, Artifact requestedMetadataArtifact, ResolvedModuleRevision rmr, ModuleDescriptorWriter writer) {
+     }
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 38bfbd4..b463bc9 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -13,3 +13,5 @@
 31_hamcrest_12.diff
 32_disable_it.diff
 33_scala_zinc.diff
+34_disable_code_quality.diff
+35_ivy_23.diff
diff --git a/gradle/buildReceipt.gradle b/gradle/buildReceipt.gradle
index ae44b2c..893ce2e 100644
--- a/gradle/buildReceipt.gradle
+++ b/gradle/buildReceipt.gradle
@@ -32,7 +32,7 @@ ext {
     }
 }
 
-/*task determineCommitId {
+task determineCommitId {
     ext.commitId = null
 
     doLast {
@@ -93,9 +93,9 @@ ext {
             throw new InvalidUserDataException("Could not determine commit id")
         }
     }
-}*/
+}
 
-task createBuildReceipt() {
+task createBuildReceipt(dependsOn: determineCommitId) {
     ext.receiptFile = file("$buildDir/$buildReceiptFileName")
     outputs.file receiptFile
     outputs.upToDateWhen { false }
@@ -107,7 +107,7 @@ task createBuildReceipt() {
             hostName = "unknown"
         }
         def data = [
-                commitId: "UNKNOWN",
+                commitId:  determineCommitId.commitId,
                 versionNumber: version,
                 versionBase: versionBase,
                 isSnapshot: isSnapshot,
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 33fe832..f269dbb 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -25,16 +25,16 @@ libraries.ant = dependencies.module('org.apache.ant:ant:1.8.4') {
     dependency 'org.apache.ant:ant-launcher:1.8.4 at jar'
 }
 
-libraries.asm =  'asm:asm4-all:4.1 at jar'
+libraries.asm =  'org.ow2.asm:asm-all:4.0 at jar'
 libraries.commons_cli = 'commons-cli:commons-cli:1.2 at jar'
 libraries.commons_io = dependencies.module(versions.commons_io)
 libraries.commons_lang = 'commons-lang:commons-lang:2.6 at jar'
-libraries.commons_collections = 'commons-collections:commons-collections3:3.2.1 at jar'
+libraries.commons_collections = 'commons-collections:commons-collections:3.2.1 at jar'
 libraries.ivy = dependencies.module('org.apache.ivy:ivy:2.2.0'){
     dependency "com.jcraft:jsch:0.1.46"
 }
-libraries.jcip = "net.jcip:jcip:debian"
-libraries.inject = dependencies.module('javax.inject:atinject-jsr330-api:1.0')
+libraries.jcip = "net.jcip:jcip-annotations:1.0 at jar"
+libraries.inject = dependencies.module('javax.inject:javax.inject:1')
 
 // Logging
 libraries.slf4j_api = 'org.slf4j:slf4j-api:1.7.2 at jar'
@@ -54,7 +54,7 @@ libraries.logback_classic = dependencies.module('ch.qos.logback:logback-classic:
 }
 
 // Jetty
-libraries.servlet_api = "javax.servlet:servlet-api:2.5 at jar"
+libraries.servlet_api = "org.mortbay.jetty:servlet-api:2.5-20081211 at jar"
 libraries.jetty_util = dependencies.module("org.mortbay.jetty:jetty-util:6.1.25") {
     dependency libraries.slf4j_api
     dependency libraries.servlet_api
@@ -83,46 +83,44 @@ libraries += [
         jsr305: 'com.google.code.findbugs:jsr305:1.3.9 at jar',
         groovy: 'org.codehaus.groovy:groovy-all:1.8.6 at jar',
         jaxen: 'jaxen:jaxen:1.1 at jar',
-        jcip: "net.jcip:jcip:debian",
+        jcip: "net.jcip:jcip-annotations:1.0 at jar",
         jna: 'net.java.dev.jna:jna:3.2.7 at jar',
-        junit: 'junit:junit4:4.x at jar',
+        junit: 'junit:junit:4.11 at jar',
         xmlunit: 'xmlunit:xmlunit:1.3',
-        nekohtml: dependencies.module('net.sourceforge.nekohtml:nekohtml:1.9.14') {
-                  dependency "xerces:xercesImpl:debian at jar"
-        },
+        nekohtml: 'net.sourceforge.nekohtml:nekohtml:1.9.14',
         xbean: 'org.apache.xbean:xbean-reflect:3.4 at jar', //required by maven3 classes
         nativePlatform: 'net.rubygrapefruit:native-platform:0.2',
         xerces: "xerces:xercesImpl:2.9.1",
         objenesis: 'org.objenesis:objenesis:1.2 at jar'
 ]
 
-libraries.maven3 = dependencies.module("org.apache.maven:maven-core-3.x:3.x") {
-    dependency "org.apache.maven:maven-settings-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-settings-builder-3.x:3.x at jar"
+libraries.maven3 = dependencies.module("org.apache.maven:maven-core:3.0.4") {
+    dependency "org.apache.maven:maven-settings:3.0.4 at jar"
+    dependency "org.apache.maven:maven-settings-builder:3.0.4 at jar"
 
     //plexus:
-    dependency "org.codehaus.plexus:plexus-utils2:debian at jar"
+    dependency "org.codehaus.plexus:plexus-utils:2.0.6 at jar"
     dependency "org.codehaus.plexus:plexus-interpolation:1.14 at jar"
-    dependency "org.codehaus.plexus:plexus-component-annotations-1.5:debian at jar"
-    dependency "org.codehaus.plexus:plexus-container-default-1.5:debian at jar"
-    dependency "org.codehaus.plexus:plexus-classworlds2:2.4 at jar"
+    dependency "org.codehaus.plexus:plexus-component-annotations:1.5.5 at jar"
+    dependency "org.codehaus.plexus:plexus-container-default:1.5.5 at jar"
+    dependency "org.codehaus.plexus:plexus-classworlds:2.4 at jar"
 
     //sonatype plexus
     dependency "org.sonatype.plexus:plexus-cipher:1.7 at jar"
     dependency "org.sonatype.plexus:plexus-sec-dispatcher:1.3 at jar"
 
     //core:
-    dependency "org.apache.maven:maven-core-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-model-builder-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-model-3.x:3.x at jar"
+    dependency "org.apache.maven:maven-core:3.0.4 at jar"
+    dependency "org.apache.maven:maven-model-builder:3.0.4 at jar"
+    dependency "org.apache.maven:maven-model:3.0.4 at jar"
 
     //somewhat core:
-    dependency "org.apache.maven:maven-artifact-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-compat-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-repository-metadata-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-plugin-api-3.x:3.x at jar"
-    dependency "org.apache.maven:maven-aether-provider-3.x:3.x at jar"
-    dependency "org.apache.maven.wagon:wagon-provider-api-2.x:2.x at jar"
+    dependency "org.apache.maven:maven-artifact:3.0.4 at jar"
+    dependency "org.apache.maven:maven-compat:3.0.4 at jar"
+    dependency "org.apache.maven:maven-repository-metadata:3.0.4 at jar"
+    dependency "org.apache.maven:maven-plugin-api:3.0.4 at jar"
+    dependency "org.apache.maven:maven-aether-provider:3.0.4 at jar"
+    dependency "org.apache.maven.wagon:wagon-provider-api:2.2 at jar"
 
     //eather:
     dependency "org.sonatype.aether:aether-api:1.13.1 at jar"
@@ -138,11 +136,11 @@ libraries.spock = [
     'cglib:cglib-nodep:2.2.2'
 ]
 libraries.jmock = [
-    'org.jmock:jmock2:2.5.1',
+    'org.jmock:jmock:2.5.1',
     'org.hamcrest:hamcrest-core:1.3',
     'org.hamcrest:hamcrest-library:1.3',
-    dependencies.create('org.jmock:jmock2-junit4:2.5.1') { exclude group: 'junit', module: 'junit-dep' }, //junit-dep pulls old definitions of core junit types.
-    'org.jmock:jmock2-legacy:2.5.1',
+    dependencies.create('org.jmock:jmock-junit4:2.5.1') { exclude group: 'junit', module: 'junit-dep' }, //junit-dep pulls old definitions of core junit types.
+    'org.jmock:jmock-legacy:2.5.1',
     libraries.objenesis,
     'cglib:cglib-nodep:2.2'
 ]
diff --git a/gradle/integTest.gradle b/gradle/integTest.gradle
index cc9577b..d5b36ca 100644
--- a/gradle/integTest.gradle
+++ b/gradle/integTest.gradle
@@ -13,7 +13,7 @@ configurations {
 }
 
 dependencies {
-    //integTestCompile project(":internalIntegTesting")
+    integTestCompile project(":internalIntegTesting")
 
     //so that implicit help tasks are available:
     integTestRuntime project(':diagnostics')
diff --git a/settings.gradle b/settings.gradle
index cb236b8..801a90d 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -36,13 +36,13 @@ include 'openApi'
 include 'toolingApi'
 include 'docs'
 include 'integTest'
-//include 'sonar'
+include 'sonar'
 include 'signing'
 include 'cpp'
 include 'ear'
 include 'native'
 include 'internalTesting'
-//include 'internalIntegTesting'
+include 'internalIntegTesting'
 include 'performance'
 include 'javascript'
 include 'buildComparison'
diff --git a/subprojects/code-quality/code-quality.gradle b/subprojects/code-quality/code-quality.gradle
index d58cc53..90640da 100644
--- a/subprojects/code-quality/code-quality.gradle
+++ b/subprojects/code-quality/code-quality.gradle
@@ -26,8 +26,8 @@ dependencies {
 
     // minimal dependencies to make our code compile
     // we don't ship these dependencies because findbugs plugin will download them (and more) at runtime
-    //provided "com.google.code.findbugs:findbugs:2.0.1 at jar"
-    //provided "com.google.code.findbugs:bcel:2.0.1 at jar"
+    provided "com.google.code.findbugs:findbugs:2.0.1 at jar"
+    provided "com.google.code.findbugs:bcel:2.0.1 at jar"
     provided "dom4j:dom4j:1.6.1 at jar"
     provided "jaxen:jaxen:1.1.1 at jar"
 }
diff --git a/subprojects/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/findbugs/FindBugsExecuter.java b/subprojects/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/findbugs/FindBugsExecuter.java
index 45f7bf0..4ed3c51 100644
--- a/subprojects/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/findbugs/FindBugsExecuter.java
+++ b/subprojects/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/findbugs/FindBugsExecuter.java
@@ -16,12 +16,10 @@
 
 package org.gradle.api.plugins.quality.internal.findbugs;
 
-/*
 import edu.umd.cs.findbugs.FindBugs;
 import edu.umd.cs.findbugs.FindBugs2;
 import edu.umd.cs.findbugs.IFindBugsEngine;
 import edu.umd.cs.findbugs.TextUICommandLine;
-*/
 
 import java.io.IOException;
 import java.io.Serializable;
@@ -38,7 +36,7 @@ public class FindBugsExecuter implements Serializable {
             final List<String> args = spec.getArguments();
             String[] strArray = new String[args.size()];
             args.toArray(strArray);
-/*
+
             Thread.currentThread().setContextClassLoader(FindBugs2.class.getClassLoader());
             FindBugs2 findBugs2 = new FindBugs2();
             TextUICommandLine commandLine = new TextUICommandLine();
@@ -46,19 +44,15 @@ public class FindBugsExecuter implements Serializable {
             findBugs2.execute();
 
             return createFindbugsResult(findBugs2);
-*/
-            return null;
         } finally {
             Thread.currentThread().setContextClassLoader(contextClassLoader);
         }
     }
 
-/*
     FindBugsResult createFindbugsResult(IFindBugsEngine findBugs) {
             int bugCount = findBugs.getBugCount();
             int missingClassCount = findBugs.getMissingClassCount();
             int errorCount = findBugs.getErrorCount();
             return new FindBugsResult(bugCount, missingClassCount, errorCount);
         }
-*/
-}
+}
\ No newline at end of file
diff --git a/subprojects/core-impl/core-impl.gradle b/subprojects/core-impl/core-impl.gradle
index 86007fd..495307e 100644
--- a/subprojects/core-impl/core-impl.gradle
+++ b/subprojects/core-impl/core-impl.gradle
@@ -58,7 +58,7 @@ def avoidConflictingPlexusComponents(JarJar task) {
     //I'm removing the components.xml file from the sec-dispatcher jar.
     //This file contains only single component so I think we can remove it.
     task.doLast {
-        def plexusSec = "$outputDir/jarjar-plexus-sec-dispatcher.jar"
+        def plexusSec = "$outputDir/jarjar-plexus-sec-dispatcher-1.3.jar"
         def plexusSecNoComps = "$plexusSec-noComps"
         ant {
             zip(destfile: plexusSecNoComps, update: true) {
@@ -69,4 +69,4 @@ def avoidConflictingPlexusComponents(JarJar task) {
             move(file: plexusSecNoComps, tofile: plexusSec)
         }
     }
-}
+}
\ No newline at end of file
diff --git a/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/PlexusLoggerAdapter.java b/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/PlexusLoggerAdapter.java
index 0397d59..4bb5c77 100644
--- a/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/PlexusLoggerAdapter.java
+++ b/subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/PlexusLoggerAdapter.java
@@ -98,8 +98,4 @@ public class PlexusLoggerAdapter implements Logger {
     public String getName() {
         return logger.getName();
     }
-
-    public void setThreshold(int level) {
-        throw new UnsupportedOperationException("setThreshold");
-    }
 }
diff --git a/subprojects/core/core.gradle b/subprojects/core/core.gradle
index 82fe6ca..53b252e 100755
--- a/subprojects/core/core.gradle
+++ b/subprojects/core/core.gradle
@@ -59,9 +59,9 @@ dependencies {
 
     testCompile project(':coreImpl')
 
-    //integTestCompile project(":internalIntegTesting")
+    integTestCompile project(":internalIntegTesting")
 
-    //reports 'css3-pie:css3-pie:1.0beta3'
+    reports 'css3-pie:css3-pie:1.0beta3'
 }
 
 useTestFixtures()
diff --git a/subprojects/core/src/main/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistry.java b/subprojects/core/src/main/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistry.java
index 6a0d698..0ba1e15 100644
--- a/subprojects/core/src/main/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistry.java
+++ b/subprojects/core/src/main/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistry.java
@@ -223,18 +223,15 @@ public class DefaultModuleRegistry implements ModuleRegistry, GradleDistribution
     }
 
     private File findExternalJar(String name) {
-        Pattern patternVersion = Pattern.compile(Pattern.quote(name) + "-\\d.+\\.jar");
-        Pattern pattern = Pattern.compile(Pattern.quote(name) + ".jar");
+        Pattern pattern = Pattern.compile(Pattern.quote(name) + "-\\d.+\\.jar");
         for (File file : classpath) {
-            if (patternVersion.matcher(file.getName()).matches()
-            || pattern.matcher(file.getName()).matches()) {
+            if (pattern.matcher(file.getName()).matches()) {
                 return file;
             }
         }
         for (File libDir : libDirs) {
             for (File file : libDir.listFiles()) {
-                if (patternVersion.matcher(file.getName()).matches()
-                || pattern.matcher(file.getName()).matches()) {
+                if (pattern.matcher(file.getName()).matches()) {
                     return file;
                 }
             }
diff --git a/subprojects/core/src/main/groovy/org/gradle/profile/ProfileReportRenderer.java b/subprojects/core/src/main/groovy/org/gradle/profile/ProfileReportRenderer.java
index d9a776f..a958cb7 100644
--- a/subprojects/core/src/main/groovy/org/gradle/profile/ProfileReportRenderer.java
+++ b/subprojects/core/src/main/groovy/org/gradle/profile/ProfileReportRenderer.java
@@ -30,7 +30,7 @@ public class ProfileReportRenderer {
         HtmlReportRenderer renderer = new HtmlReportRenderer();
         renderer.requireResource(getClass().getResource("/org/gradle/reporting/base-style.css"));
         renderer.requireResource(getClass().getResource("/org/gradle/reporting/report.js"));
-        //renderer.requireResource(getClass().getResource("/org/gradle/reporting/css3-pie-1.0beta3.htc"));
+        renderer.requireResource(getClass().getResource("/org/gradle/reporting/css3-pie-1.0beta3.htc"));
         renderer.requireResource(getClass().getResource("style.css"));
         renderer.renderer(new ProfilePageRenderer()).writeTo(buildProfile, file);
     }
diff --git a/subprojects/core/src/main/resources/org/gradle/reporting/base-style.css b/subprojects/core/src/main/resources/org/gradle/reporting/base-style.css
index 89ee415..e09a387 100644
--- a/subprojects/core/src/main/resources/org/gradle/reporting/base-style.css
+++ b/subprojects/core/src/main/resources/org/gradle/reporting/base-style.css
@@ -68,7 +68,7 @@ ul.tabLinks li {
     margin-right: 25px;
     border: solid 1px #d4d4d4;
     background-color: #f0f0f0;
-    /*behavior: url(css3-pie-1.0beta3.htc);*/
+    behavior: url(css3-pie-1.0beta3.htc);
 }
 
 ul.tabLinks li:hover {
diff --git a/subprojects/core/src/testFixtures/groovy/org/gradle/util/Matchers.java b/subprojects/core/src/testFixtures/groovy/org/gradle/util/Matchers.java
index 2854dfb..13e0cd3 100644
--- a/subprojects/core/src/testFixtures/groovy/org/gradle/util/Matchers.java
+++ b/subprojects/core/src/testFixtures/groovy/org/gradle/util/Matchers.java
@@ -273,7 +273,7 @@ public class Matchers {
     }
 
     @Factory
-    public static Matcher<Task> dependsOn(final Matcher matcher) {
+    public static Matcher<Task> dependsOn(final Matcher<? extends Iterable<String>> matcher) {
         return new BaseMatcher<Task>() {
             public boolean matches(Object o) {
                 Task task = (Task) o;
@@ -303,7 +303,7 @@ public class Matchers {
     }
 
     @Factory
-    public static <T extends Buildable> Matcher<T> builtBy(final Matcher matcher) {
+    public static <T extends Buildable> Matcher<T> builtBy(final Matcher<? extends Iterable<String>> matcher) {
         return new BaseMatcher<T>() {
             public boolean matches(Object o) {
                 Buildable task = (Buildable) o;
diff --git a/subprojects/docs/docs.gradle b/subprojects/docs/docs.gradle
index d62ce26..87bba4f 100755
--- a/subprojects/docs/docs.gradle
+++ b/subprojects/docs/docs.gradle
@@ -25,6 +25,7 @@ import org.gradle.build.docs.releasenotes.checks.*
 import org.apache.tools.ant.filters.ReplaceTokens
 
 apply plugin: 'base'
+apply plugin: 'pegdown'
 apply plugin: 'jsoup'
 apply plugin: 'javascript-base'
 
@@ -42,23 +43,22 @@ repositories {
 }
 
 configurations {
-    //userGuideStyleSheets
+    userGuideStyleSheets
     userGuideTask
     jquery
-    //fonts
+    fonts
 }
 
 dependencies {
-    userGuideTask 'xalan:xalan2:2.7.1', 'xerces:xercesImpl:2.9.1'
-    userGuideTask module('xhtmlrenderer:core-renderer:R8rc1') {
+    userGuideTask 'xalan:xalan:2.7.1', libraries.xerces
+    userGuideTask module('xhtmlrenderer:xhtmlrenderer:R8rc1') {
         dependency 'itext:itext:2.0.8 at jar'
     }
     userGuideTask 'xslthl:xslthl:2.0.1 at jar'
 
-    //userGuideStyleSheets 'docbook:docbook-xsl:1.75.2 at zip'
+    userGuideStyleSheets 'docbook:docbook-xsl:1.75.2 at zip'
     jquery "jquery:jquery.min:1.8.0 at js"
 
-    /*
     fonts \
         "lato:regular:6:v0SdcGFAl2aezM9Vq_aFTQ at ttf",
         "lato:regular-italic:6:LqowQDslGv4DmUBAfWa2Vw at ttf",
@@ -68,7 +68,6 @@ dependencies {
         "ubuntumono:regular-italic:3:KAKuHXAHZOeECOWAHsRKA-LrC4Du4e_yfTJ8Ol60xk0 at ttf",
         "ubuntumono:bold:3:ceqTZGKHipo8pJj4molytp_TkvowlIOtbR7ePgFOpF4 at ttf",
         "ubuntumono:bold-italic:3:n_d8tv_JOIiYyMXR4eaV9WsGzsqhEorxQDpu60nfWEc at ttf"
-    */
 
     groovy libraries.groovy
     testCompile "org.pegdown:pegdown:1.1.0"
@@ -98,11 +97,11 @@ outputs.distDocs = files(distDocsDir) {
     builtBy 'distDocs'
 }
 outputs.docs = files(docsDir) {
-    builtBy 'javadocAll', 'groovydocAll', 'userguide', 'dslHtml'
+    builtBy 'javadocAll', 'groovydocAll', 'userguide', 'dslHtml', 'releaseNotes'
 }
 
 tasks.withType(Docbook2Xhtml) {
-    //dependsOn userguideStyleSheets
+    dependsOn userguideStyleSheets
     classpath = configurations.userGuideTask
     stylesheetsDir = userguideStyleSheets.destinationDir
 }
@@ -132,12 +131,12 @@ task configureCss << {
         [it.name, it.bytes.encodeBase64().toString()]
     }
 
-    /*def fonts = configurations.fonts.resolvedConfiguration.resolvedArtifacts.collectEntries {
+    def fonts = configurations.fonts.resolvedConfiguration.resolvedArtifacts.collectEntries {
         def id = it.moduleVersion.id
         ["${id.group}-${id.name}".toString(), it.file.bytes.encodeBase64().toString()]
-    }*/
+    }
 
-    ext.tokens = images // + fonts
+    ext.tokens = images + fonts
     css.inputs.property 'tokens', tokens
     css.filter ReplaceTokens, tokens: tokens
 }
@@ -177,10 +176,10 @@ task userguideStyleSheets(type: Copy) {
         include '*.xsl'
     }
     from(cssFiles)
-    //from({ zipTree(configurations.userGuideStyleSheets.singleFile) }) {
-    //    // Remove the prefix
-    //    eachFile { fcd -> fcd.path = fcd.path.replaceFirst('^docbook-xsl-[0-9\\.]+/', '') }
-    //}
+    from({ zipTree(configurations.userGuideStyleSheets.singleFile) }) {
+        // Remove the prefix
+        eachFile { fcd -> fcd.path = fcd.path.replaceFirst('^docbook-xsl-[0-9\\.]+/', '') }
+    }
 }
 
 task samplesDocbook(type: AssembleSamplesDocTask) {
@@ -276,10 +275,8 @@ task userguidePdf(type: Xhtml2Pdf, dependsOn: pdfUserguideXhtml) {
     classpath = configurations.userGuideTask
 }
 
-//def javaApiUrl = "http://docs.oracle.com/javase/1.5.0/docs/api/"
-def javaApiUrl = "file:///usr/share/doc/default-jdk-doc/api"
-//def groovyApiUrl = "http://groovy.codehaus.org/gapi/"
-def groovyApiUrl = "file:///usr/share/doc/groovy-doc/gapi/"
+def javaApiUrl = "http://docs.oracle.com/javase/1.5.0/docs/api/"
+def groovyApiUrl = "http://groovy.codehaus.org/gapi/"
 
 task javadocAll(type: Javadoc) {
     ext.stylesheetFile = file("src/docs/css/javadoc.css")
@@ -301,7 +298,8 @@ task javadocAll(type: Javadoc) {
     include 'org/gradle/testfixtures/**'
     include 'org/gradle/tooling/**'
     exclude '**/internal/**'
-    options.links(javaApiUrl, groovyApiUrl, "file:///usr/share/doc/libmaven2-core-java/api")
+    options.links(javaApiUrl, groovyApiUrl, "http://maven.apache.org/ref/2.2.1/maven-core/apidocs",
+        "http://maven.apache.org/ref/2.2.1/maven-model/apidocs")
     doFirst {
         title = "Gradle API $version"
     }
@@ -363,10 +361,10 @@ task userguide {
     group = 'documentation'
 }
 
-//import org.gradle.plugins.pegdown.PegDown
+import org.gradle.plugins.pegdown.PegDown
 import org.gradle.plugins.jsoup.Jsoup
 
-/*task editReleaseNotes() {
+task editReleaseNotes() {
     group = "release notes"
     doLast {
         Class.forName("java.awt.Desktop").newInstance().edit(file("src/docs/release/notes.md"))
@@ -411,14 +409,14 @@ test {
     systemProperty "org.gradle.docs.releasenotes.source", releaseNotesMarkdown.source.singleFile
     systemProperty "org.gradle.docs.releasenotes.rendered", new File(releaseNotes.destinationDir, releaseNotes.fileName)
 
-}*/
+}
 
 if (project.hasProperty('noDocsTests')) {
     gradle.startParameter.excludedTaskNames << test.path
 }
 
 task docs {
-    dependsOn javadocAll, groovydocAll, userguide, distDocs, samplesDocs, dslHtml
+    dependsOn javadocAll, groovydocAll, userguide, distDocs, samplesDocs, dslHtml, releaseNotes
     description = 'Generates all documentation'
     group = 'documentation'
 }
diff --git a/subprojects/docs/src/docs/dsl/dsl.xml b/subprojects/docs/src/docs/dsl/dsl.xml
index c071f3a..3089f13 100644
--- a/subprojects/docs/src/docs/dsl/dsl.xml
+++ b/subprojects/docs/src/docs/dsl/dsl.xml
@@ -318,11 +318,9 @@
             <tr>
                 <td>org.gradle.plugins.signing.Sign</td>
             </tr>
-<!--
             <tr>
                 <td>org.gradle.api.plugins.sonar.SonarAnalyze</td>
             </tr>
--->
             <tr>
                 <td>org.gradle.api.tasks.Sync</td>
             </tr>
@@ -429,4 +427,4 @@
         </table>
     </section>
 
-</book>
+</book>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/stylesheets/dslHtml.xsl b/subprojects/docs/src/docs/stylesheets/dslHtml.xsl
index bb68681..b232faa 100644
--- a/subprojects/docs/src/docs/stylesheets/dslHtml.xsl
+++ b/subprojects/docs/src/docs/stylesheets/dslHtml.xsl
@@ -14,7 +14,7 @@
   ~ limitations under the License.
   -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/html/chunkfast.xsl"/>
+    <xsl:import href="html/chunkfast.xsl"/>
     <xsl:import href="userGuideHtmlCommon.xsl"/>
 
     <xsl:output method="html" doctype-system="http://www.w3.org/TR/html4/strict.dtd"
@@ -209,4 +209,4 @@
         <dt><xsl:apply-templates select="$segtitles[$segnum=position()]" mode="segtitle-in-seg"/>:</dt>
         <dd><xsl:apply-templates/></dd>
     </xsl:template>
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/stylesheets/standaloneHtml.xsl b/subprojects/docs/src/docs/stylesheets/standaloneHtml.xsl
index f00edfc..53e75ae 100644
--- a/subprojects/docs/src/docs/stylesheets/standaloneHtml.xsl
+++ b/subprojects/docs/src/docs/stylesheets/standaloneHtml.xsl
@@ -17,7 +17,7 @@
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
         xmlns:xi="http://www.w3.org/2001/XInclude"
         version="1.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/html/docbook.xsl"/>
+    <xsl:import href="html/docbook.xsl"/>
     <xsl:import href="userGuideHtmlCommon.xsl"/>
 
     <xsl:param name="section.autolabel">0</xsl:param>
@@ -36,4 +36,4 @@
             <xi:include href="userguide.css" parse="text"/>
         </style>
     </xsl:template>
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/stylesheets/userGuideHtml.xsl b/subprojects/docs/src/docs/stylesheets/userGuideHtml.xsl
index 755adaf..98fe4e1 100644
--- a/subprojects/docs/src/docs/stylesheets/userGuideHtml.xsl
+++ b/subprojects/docs/src/docs/stylesheets/userGuideHtml.xsl
@@ -15,7 +15,7 @@
   -->
 <xsl:stylesheet
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/html/chunkfast.xsl"/>
+    <xsl:import href="html/chunkfast.xsl"/>
     <xsl:import href="userGuideHtmlCommon.xsl"/>
 
     <xsl:param name="root.filename">userguide</xsl:param>
@@ -84,4 +84,4 @@
         </div>
     </xsl:template>
 
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl b/subprojects/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl
index 31f5c84..e8ea7e8 100644
--- a/subprojects/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl
+++ b/subprojects/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl
@@ -16,8 +16,8 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 xmlns:xslthl="http://xslthl.sf.net"
                 version="1.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/highlighting/common.xsl"/>
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/html/highlight.xsl"/>
+    <xsl:import href="highlighting/common.xsl"/>
+    <xsl:import href="html/highlight.xsl"/>
 
     <xsl:output method="html"
                 encoding="UTF-8"
diff --git a/subprojects/docs/src/docs/stylesheets/userGuidePdf.xsl b/subprojects/docs/src/docs/stylesheets/userGuidePdf.xsl
index 7b10e8e..002ea21 100644
--- a/subprojects/docs/src/docs/stylesheets/userGuidePdf.xsl
+++ b/subprojects/docs/src/docs/stylesheets/userGuidePdf.xsl
@@ -14,7 +14,7 @@
   ~ limitations under the License.
   -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/xhtml/docbook.xsl"/>
+    <xsl:import href="xhtml/docbook.xsl"/>
     <xsl:import href="userGuideHtmlCommon.xsl"/>
 
     <xsl:output method="xml"
@@ -59,4 +59,4 @@
             <xsl:apply-templates select=".." mode="title.markup"/>
         </h1>
     </xsl:template>
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/stylesheets/userGuideSingleHtml.xsl b/subprojects/docs/src/docs/stylesheets/userGuideSingleHtml.xsl
index 886ddc4..e09e7ce 100644
--- a/subprojects/docs/src/docs/stylesheets/userGuideSingleHtml.xsl
+++ b/subprojects/docs/src/docs/stylesheets/userGuideSingleHtml.xsl
@@ -15,6 +15,6 @@
   -->
 <xsl:stylesheet
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-    <xsl:import href="/usr/share/xml/docbook/stylesheet/docbook-xsl/html/docbook.xsl"/>
+    <xsl:import href="html/docbook.xsl"/>
     <xsl:import href="userGuideHtmlCommon.xsl"/>
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/userguide/sonarPlugin.xml b/subprojects/docs/src/docs/userguide/sonarPlugin.xml
index b911de6..ce430bc 100644
--- a/subprojects/docs/src/docs/userguide/sonarPlugin.xml
+++ b/subprojects/docs/src/docs/userguide/sonarPlugin.xml
@@ -147,8 +147,9 @@
             <tr>
                 <td><literal>sonarAnalyze</literal></td>
                 <td>-</td>
+                <td><apilink class="org.gradle.api.plugins.sonar.SonarAnalyze"/></td>
                 <td>Analyzes a project hierarchy and stores the results in the Sonar database.</td>
             </tr>
         </table>
     </section>
-</chapter>
+</chapter>
\ No newline at end of file
diff --git a/subprojects/docs/src/docs/userguide/userguide.xml b/subprojects/docs/src/docs/userguide/userguide.xml
index 89c5598..4b664b3 100755
--- a/subprojects/docs/src/docs/userguide/userguide.xml
+++ b/subprojects/docs/src/docs/userguide/userguide.xml
@@ -60,7 +60,7 @@
     <xi:include href='findBugsPlugin.xml'/>
     <xi:include href='jdependPlugin.xml'/>
     <xi:include href='pmdPlugin.xml'/>
-<!--    <xi:include href='sonarPlugin.xml'/> -->
+    <xi:include href='sonarPlugin.xml'/>
     <xi:include href='osgi.xml'/>
     <xi:include href='eclipsePlugin.xml'/>
     <xi:include href='ideaPlugin.xml'/>
diff --git a/subprojects/javascript/javascript.gradle b/subprojects/javascript/javascript.gradle
index 5eed172..ce4823b 100644
--- a/subprojects/javascript/javascript.gradle
+++ b/subprojects/javascript/javascript.gradle
@@ -17,9 +17,9 @@
 dependencies {
     groovy libraries.groovy
 
-    compile "org.mozilla:js:1.7R3"
+    compile "org.mozilla:rhino:1.7R3"
     compile "com.google.code.gson:gson:2.2.1" // used by JsHint
-    //compile "org.simpleframework:simple:4.1.21" // used by http package in envjs
+    compile "org.simpleframework:simple:4.1.21" // used by http package in envjs
     compile project(':core'), project(":plugins")
     compile libraries.inject
 
@@ -27,6 +27,4 @@ dependencies {
     compile project(':coreImpl')
 }
 
-sourceSets.main.groovy.excludes = ['**/org/gradle/plugins/javascript/envjs/**']
-
 useTestFixtures()
diff --git a/subprojects/jetty/jetty.gradle b/subprojects/jetty/jetty.gradle
index f4ad01a..6f54116 100644
--- a/subprojects/jetty/jetty.gradle
+++ b/subprojects/jetty/jetty.gradle
@@ -23,22 +23,22 @@ dependencies {
     compile libraries.jetty
     compile libraries.jetty_util
     compile libraries.servlet_api
-    compile module("org.mortbay.jetty:jetty-plus:6.x") {
+    compile module("org.mortbay.jetty:jetty-plus:6.1.25") {
         dependency libraries.jetty
-        module("org.mortbay.jetty:jetty-naming:6.x") {
+        module("org.mortbay.jetty:jetty-naming:6.1.25") {
             dependency libraries.jetty
         }
     }
 
-    runtime module("org.mortbay.jetty:jsp-api:2.1") {
-        dependency "org.eclipse.jdt:eclipse-ecj:3.1.1 at jar"
-        dependency "org.mortbay.jetty:jsp-api-2.1:6.x at jar"
+    runtime module("org.mortbay.jetty:jsp-2.1:6.1.14") {
+        dependency "org.eclipse.jdt:core:3.1.1 at jar"
+        dependency "org.mortbay.jetty:jsp-api-2.1:6.1.14 at jar"
         dependency libraries.jetty_util
         dependency libraries.servlet_api
     }
 
-    runtime "org.mortbay.jetty:jetty-annotations:6.x at jar"
-    //runtime "org.apache.geronimo.specs:geronimo-annotation_1.0_spec:1.0 at jar"
+    runtime "org.mortbay.jetty:jetty-annotations:6.1.25 at jar"
+    runtime "org.apache.geronimo.specs:geronimo-annotation_1.0_spec:1.0 at jar"
 }
 
-useTestFixtures()
+useTestFixtures()
\ No newline at end of file
diff --git a/subprojects/maven/maven.gradle b/subprojects/maven/maven.gradle
index bcbc088..0e62608 100644
--- a/subprojects/maven/maven.gradle
+++ b/subprojects/maven/maven.gradle
@@ -26,7 +26,7 @@ dependencies {
     compile libraries.maven_ant_tasks
     compile "org.sonatype.pmaven:pmaven-common:0.8-20100325 at jar"
     compile "org.sonatype.pmaven:pmaven-groovy:0.8-20100325 at jar"
-    compile "org.codehaus.plexus:plexus-component-annotations-1.5:debian at jar"
+    compile "org.codehaus.plexus:plexus-component-annotations:1.5.2 at jar"
 }
 
 useTestFixtures()
diff --git a/subprojects/native/native.gradle b/subprojects/native/native.gradle
index addacf3..04f1ac8 100755
--- a/subprojects/native/native.gradle
+++ b/subprojects/native/native.gradle
@@ -9,13 +9,10 @@ dependencies {
     compile libraries.slf4j_api
     compile libraries.jna
     compile libraries.nativePlatform
-    compile module('org.jruby.ext.posix:jnr-posix:debian') {
+    compile module('org.jruby.ext.posix:jna-posix:1.0.3') {
         dependency libraries.jna
     }
-    compile 'org.jruby.extras:constantine:debian'
-    compile 'org.jruby.extras:jaffl:debian'
-    compile 'org.jruby.extras:jffi:debian'
-    compile module('org.fusesource.jansi:jansi:debian') {
+    compile module('org.fusesource.jansi:jansi:1.2.1') {
         dependency libraries.jna
     }
     compile libraries.guava
diff --git a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/FileSystemServices.java b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/FileSystemServices.java
index f2ca612..40e36d8 100644
--- a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/FileSystemServices.java
+++ b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/FileSystemServices.java
@@ -23,6 +23,8 @@ import org.gradle.internal.nativeplatform.jna.LibC;
 import org.gradle.internal.os.OperatingSystem;
 import org.gradle.internal.service.DefaultServiceRegistry;
 import org.gradle.internal.service.ServiceRegistry;
+import org.jruby.ext.posix.BaseNativePOSIX;
+import org.jruby.ext.posix.JavaPOSIX;
 import org.jruby.ext.posix.POSIX;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -59,7 +61,7 @@ public class FileSystemServices {
         if (libC != null && (operatingSystem.isLinux() || operatingSystem.isMacOsX())) {
             FilePathEncoder filePathEncoder = createEncoder(libC);
             serviceRegistry.add(Chmod.class, new LibcChmod(libC, filePathEncoder));
-            serviceRegistry.add(Stat.class, new LibCStat(libC, operatingSystem, PosixUtil.current(), filePathEncoder));
+            serviceRegistry.add(Stat.class, new LibCStat(libC, operatingSystem, (BaseNativePOSIX) PosixUtil.current(), filePathEncoder));
             return;
         }
 
@@ -93,7 +95,7 @@ public class FileSystemServices {
 
     private static Stat createStat() {
         POSIX posix = PosixUtil.current();
-        if (posix.getClass().toString().equals("org.jruby.ext.posix.JavaPOSIX")) {
+        if (posix instanceof JavaPOSIX) {
             return new FallbackStat();
         } else {
             return new PosixStat(posix);
diff --git a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/LibCStat.java b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/LibCStat.java
index b342ef2..a9ad76c 100644
--- a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/LibCStat.java
+++ b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/LibCStat.java
@@ -18,8 +18,9 @@ package org.gradle.internal.nativeplatform.filesystem;
 
 import org.gradle.internal.nativeplatform.jna.LibC;
 import org.gradle.internal.os.OperatingSystem;
+import org.jruby.ext.posix.BaseNativePOSIX;
 import org.jruby.ext.posix.FileStat;
-import org.jruby.ext.posix.POSIX;
+import org.jruby.ext.posix.Linux64FileStat;
 
 import java.io.File;
 import java.io.IOException;
@@ -28,9 +29,9 @@ class LibCStat implements Stat {
     private final LibC libc;
     private final FilePathEncoder encoder;
     private final OperatingSystem operatingSystem;
-    private final POSIX nativePOSIX;
+    private final BaseNativePOSIX nativePOSIX;
 
-    public LibCStat(LibC libc, OperatingSystem operatingSystem, POSIX nativePOSIX, FilePathEncoder encoder) {
+    public LibCStat(LibC libc, OperatingSystem operatingSystem, BaseNativePOSIX nativePOSIX, FilePathEncoder encoder) {
         this.libc = libc;
         this.operatingSystem = operatingSystem;
         this.nativePOSIX = nativePOSIX;
@@ -38,7 +39,17 @@ class LibCStat implements Stat {
     }
 
     public int getUnixMode(File f) throws IOException {
-        FileStat stat = nativePOSIX.stat(new String(encoder.encode(f)));
+        FileStat stat = nativePOSIX.allocateStat();
+        initPlatformSpecificStat(stat, encoder.encode(f));
         return stat.mode() & 0777;
     }
+
+    private void initPlatformSpecificStat(FileStat stat, byte[] encodedFilePath) {
+        if (operatingSystem.isMacOsX()) {
+            libc.stat(encodedFilePath, stat);
+        } else {
+            final int statVersion = stat instanceof Linux64FileStat ? 3 : 0;
+            libc.__xstat64(statVersion, encodedFilePath, stat);
+        }
+    }
 }
diff --git a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/PosixUtil.java b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/PosixUtil.java
index 4eb49b2..7d236b3 100644
--- a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/PosixUtil.java
+++ b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/filesystem/PosixUtil.java
@@ -20,8 +20,6 @@ import org.jruby.ext.posix.POSIX;
 import org.jruby.ext.posix.POSIXFactory;
 import org.jruby.ext.posix.POSIXHandler;
 
-import com.kenai.constantine.platform.Errno;
-
 import java.io.File;
 import java.io.InputStream;
 import java.io.PrintStream;
@@ -34,7 +32,7 @@ public class PosixUtil {
     }
 
     private static class POSIXHandlerImpl implements POSIXHandler {
-        public void error(Errno error, String message) {
+        public void error(POSIX.ERRORS error, String message) {
             throw new UnsupportedOperationException(error + " - " + message);
         }
 
diff --git a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/jna/JnaBootPathConfigurer.java b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/jna/JnaBootPathConfigurer.java
index f8c444e..8b486f4 100644
--- a/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/jna/JnaBootPathConfigurer.java
+++ b/subprojects/native/src/main/java/org/gradle/internal/nativeplatform/jna/JnaBootPathConfigurer.java
@@ -39,17 +39,9 @@ public class JnaBootPathConfigurer {
      */
     public void configure(File storageDir) {
         String nativePrefix = OperatingSystem.current().getNativePrefix();
-        File tmpDir = new File(storageDir, "jni/");
+        File tmpDir = new File(storageDir, String.format("jna/%s", nativePrefix));
+        tmpDir.mkdirs();
         String jnaLibName = OperatingSystem.current().isMacOsX() ? "libjnidispatch.jnilib" : System.mapLibraryName("jnidispatch");
-
-        // Try to load /usr/lib/jni/jnidispatch.so first before storageDir
-        File usrDir = new File("/usr/lib/jni/");
-        File usrLibFile = new File(usrDir, jnaLibName);
-        if (usrLibFile.isFile()) {
-            System.setProperty("jna.boot.library.path", usrDir.getAbsolutePath());
-            return;
-        }
-
         File libFile = new File(tmpDir, jnaLibName);
         if (!libFile.exists()) {
             String resourceName = "/com/sun/jna/" + nativePrefix + "/" + jnaLibName;
diff --git a/subprojects/osgi/osgi.gradle b/subprojects/osgi/osgi.gradle
index e1a1d22..57d7c1f 100644
--- a/subprojects/osgi/osgi.gradle
+++ b/subprojects/osgi/osgi.gradle
@@ -21,7 +21,7 @@ dependencies {
     compile project(':plugins')
     compile libraries.slf4j_api
 
-    compile module('biz.aQute:bndlib:debian')
+    compile module('biz.aQute:bndlib:1.50.0')
 }
 
 useTestFixtures()
diff --git a/subprojects/performance/performance.gradle b/subprojects/performance/performance.gradle
index 4d95938..62ed02b 100644
--- a/subprojects/performance/performance.gradle
+++ b/subprojects/performance/performance.gradle
@@ -8,7 +8,7 @@ configurations {
 dependencies {
     junit 'junit:junit:4.11'
     groovy libraries.groovy
-    //testFixturesCompile project(':internalIntegTesting')
+    testFixturesCompile project(':internalIntegTesting')
     plugin gradleApi()
 }
 
diff --git a/subprojects/plugins/plugins.gradle b/subprojects/plugins/plugins.gradle
index 45caf16..b163af0 100644
--- a/subprojects/plugins/plugins.gradle
+++ b/subprojects/plugins/plugins.gradle
@@ -38,7 +38,7 @@ dependencies {
     compile libraries.commons_lang
     compile libraries.junit
     compile libraries.slf4j_api
-    compile 'org.testng:testng:5.11 at jar'
+    compile 'org.testng:testng:6.3.1'
 
     provided files(jvm.toolsJar) // for SunJavaCompiler
 
diff --git a/subprojects/plugins/src/main/groovy/org/gradle/api/internal/tasks/testing/junit/report/DefaultTestReport.java b/subprojects/plugins/src/main/groovy/org/gradle/api/internal/tasks/testing/junit/report/DefaultTestReport.java
index d706af9..918cb86 100644
--- a/subprojects/plugins/src/main/groovy/org/gradle/api/internal/tasks/testing/junit/report/DefaultTestReport.java
+++ b/subprojects/plugins/src/main/groovy/org/gradle/api/internal/tasks/testing/junit/report/DefaultTestReport.java
@@ -37,7 +37,7 @@ public class DefaultTestReport implements TestReporter {
     public DefaultTestReport() {
         htmlRenderer.requireResource(getClass().getResource("/org/gradle/reporting/report.js"));
         htmlRenderer.requireResource(getClass().getResource("/org/gradle/reporting/base-style.css"));
-        //htmlRenderer.requireResource(getClass().getResource("/org/gradle/reporting/css3-pie-1.0beta3.htc"));
+        htmlRenderer.requireResource(getClass().getResource("/org/gradle/reporting/css3-pie-1.0beta3.htc"));
         htmlRenderer.requireResource(getClass().getResource("style.css"));
     }
 
diff --git a/subprojects/plugins/src/main/resources/org/gradle/api/internal/tasks/testing/junit/report/style.css b/subprojects/plugins/src/main/resources/org/gradle/api/internal/tasks/testing/junit/report/style.css
index c558310..2440a1f 100644
--- a/subprojects/plugins/src/main/resources/org/gradle/api/internal/tasks/testing/junit/report/style.css
+++ b/subprojects/plugins/src/main/resources/org/gradle/api/internal/tasks/testing/junit/report/style.css
@@ -41,7 +41,7 @@
     border: solid 2px #d0d0d0;
     -moz-border-radius: 10px;
     border-radius: 10px;
-    /*behavior: url(css3-pie-1.0beta3.htc);*/
+    behavior: url(css3-pie-1.0beta3.htc);
 }
 
 #successRate {
diff --git a/subprojects/scala/scala.gradle b/subprojects/scala/scala.gradle
index d8991e1..ad6e0ce 100644
--- a/subprojects/scala/scala.gradle
+++ b/subprojects/scala/scala.gradle
@@ -23,14 +23,11 @@ dependencies {
     compile project(":plugins")
 
     // keep in sync with ScalaBasePlugin code
-    // provided("com.typesafe.zinc:zinc:0.2.0")
+    provided("com.typesafe.zinc:zinc:0.2.0")
 
     testCompile libraries.slf4j_api
 }
 
-// No Zinc compiler
-sourceSets.main.groovy.excludes = ['**/org/gradle/api/internal/tasks/scala/jdk6/**']
-
 useTestFixtures(project: ":plugins") // includes core test fixtures
 
 if (!javaVersion.java6Compatible) {
diff --git a/subprojects/scala/src/main/groovy/org/gradle/api/plugins/scala/ScalaBasePlugin.groovy b/subprojects/scala/src/main/groovy/org/gradle/api/plugins/scala/ScalaBasePlugin.groovy
index d56b825..1dd6118 100644
--- a/subprojects/scala/src/main/groovy/org/gradle/api/plugins/scala/ScalaBasePlugin.groovy
+++ b/subprojects/scala/src/main/groovy/org/gradle/api/plugins/scala/ScalaBasePlugin.groovy
@@ -119,11 +119,11 @@ class ScalaBasePlugin implements Plugin<Project> {
             compile.conventionMapping.scalaClasspath = { getScalaClasspath(compile.classpath) }
             compile.conventionMapping.zincClasspath = {
                 def config = project.configurations[ZINC_CONFIGURATION_NAME]
-                //if (!compile.scalaCompileOptions.useAnt && config.dependencies.empty) {
-                //    project.dependencies {
-                //        zinc("com.typesafe.zinc:zinc:$DEFAULT_ZINC_VERSION")
-                //    }
-                //}
+                if (!compile.scalaCompileOptions.useAnt && config.dependencies.empty) {
+                    project.dependencies {
+                        zinc("com.typesafe.zinc:zinc:$DEFAULT_ZINC_VERSION")
+                    }
+                }
                 config
             }
         }
@@ -159,4 +159,4 @@ class ScalaBasePlugin implements Plugin<Project> {
         }
         null
     }
-}
+}
\ No newline at end of file
diff --git a/subprojects/signing/signing.gradle b/subprojects/signing/signing.gradle
index 055c36d..dd4ae7f 100644
--- a/subprojects/signing/signing.gradle
+++ b/subprojects/signing/signing.gradle
@@ -21,9 +21,9 @@ dependencies {
     compile project(":plugins")
     compile project(":maven")
 
-    compile module("org.bouncycastle:bcpg:debian") {
-        dependency "org.bouncycastle:bcprov:debian at jar"
+    compile module("org.bouncycastle:bcpg-jdk15:1.46") {
+        dependency "org.bouncycastle:bcprov-jdk15:1.46 at jar"
     }
 }
 
-useTestFixtures()
+useTestFixtures()
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/gradle-1.12.git



More information about the pkg-java-commits mailing list