Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/corda/corda
Browse files Browse the repository at this point in the history
  • Loading branch information
josecoll committed Jul 23, 2018
2 parents 0e75027 + 6427eb3 commit e7f3847
Show file tree
Hide file tree
Showing 254 changed files with 2,021 additions and 10,606 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ see changes to this list.
* Johann Palychata (BNP Paribas)
* johnnyychiu
* Jonathan Sartin (R3)
* Jonathan Sphar (R3)
* Jose Coll (R3)
* Jose Luu (Natixis)
* Josh Lindl (BCS)
Expand Down Expand Up @@ -170,6 +171,7 @@ see changes to this list.
* Sam Chadwick (Thomson Reuters)
* Sasmit Sahu
* Scott James
* Sean Zhang (Wells Fargo)
* Shams Asari (R3)
* Siddhartha Sengupta (Tradewind Markets)
* Simon Taylor (Barclays)
Expand Down
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ buildscript {
ext.fileupload_version = '1.3.3'
ext.junit_version = '4.12'
ext.mockito_version = '2.18.3'
ext.hamkrest_version = '1.4.2.2'
ext.jopt_simple_version = '5.0.2'
ext.jansi_version = '1.14'
ext.hibernate_version = '5.2.6.Final'
Expand Down Expand Up @@ -98,6 +99,7 @@ buildscript {
classpath "net.corda.plugins:cordformation:$gradle_plugins_version"
classpath "net.corda.plugins:cordapp:$gradle_plugins_version"
classpath "net.corda.plugins:api-scanner:$gradle_plugins_version"
classpath "net.corda.plugins:jar-filter:$gradle_plugins_version"
classpath "net.sf.proguard:proguard-gradle:$proguard_version"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version"
Expand Down Expand Up @@ -216,6 +218,9 @@ allprojects {
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

// Force dependencies to use the same version of Guava as Corda.
force "com.google.guava:guava:$guava_version"

// Demand that everything uses our given version of Netty.
eachDependency { details ->
if (details.requested.group == 'io.netty' && details.requested.name.startsWith('netty-')) {
Expand Down
27 changes: 0 additions & 27 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,8 @@ buildscript {

ext {
guava_version = constants.getProperty("guavaVersion")
kotlin_version = constants.getProperty("kotlinVersion")
proguard_version = constants.getProperty("proguardVersion")
assertj_version = '3.9.1'
junit_version = '4.12'
asm_version = '6.2'
}

repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "net.sf.proguard:proguard-gradle:$proguard_version"
}
}

Expand All @@ -28,23 +15,9 @@ repositories {
}

allprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
languageVersion = "1.2"
apiVersion = "1.2"
jvmTarget = "1.8"
javaParameters = true // Useful for reflection.
}
}

tasks.withType(Test) {
// Prevent the project from creating temporary files outside of the build directory.
systemProperty 'java.io.tmpdir', buildDir.absolutePath

// Tell the tests where Gradle's current module cache is.
// We need the tests to share this module cache to prevent the
// Gradle Test-Kit from downloading its own copy of Kotlin etc.
systemProperty 'test.gradle.user.home', project.gradle.gradleUserHomeDir
}
}

Expand Down
218 changes: 0 additions & 218 deletions buildSrc/jarfilter/README.md

This file was deleted.

46 changes: 0 additions & 46 deletions buildSrc/jarfilter/build.gradle

This file was deleted.

Loading

0 comments on commit e7f3847

Please sign in to comment.