Skip to content

Commit 3205977

Browse files
authored
Merge pull request #546 from rpmoore/5_0_beta_prep
Getting the 5.0 sdk ready for a beta release
2 parents 849e792 + 1d210ab commit 3205977

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,28 @@ buildscript {
2323

2424
dependencies {
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
26-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
27-
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
26+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
27+
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
28+
classpath "gradle.plugin.net.ossindex:ossindex-gradle-plugin:0.2.0-beta"
2829
}
2930
}
3031

3132

3233
plugins {
33-
id "com.palantir.git-version" version "0.10.0"
34+
id "com.palantir.git-version" version "0.10.1"
3435
}
3536

3637
allprojects {
3738
group = 'com.spectralogic.ds3'
38-
version = '4.0.1'
39+
version = '5.0.0'
3940
}
4041

4142
subprojects {
4243
apply plugin: 'maven'
4344
apply plugin: 'java'
4445
apply plugin: 'kotlin'
4546
apply plugin: 'findbugs'
47+
apply plugin: 'net.ossindex.audit'
4648

4749
sourceCompatibility = JavaVersion.VERSION_1_8
4850
repositories {
@@ -62,7 +64,7 @@ subprojects {
6264
}
6365

6466
task wrapper(type: Wrapper) {
65-
gradleVersion = '4.1'
67+
gradleVersion = '4.6'
6668
}
6769

6870
project(':ds3-sdk') {

gradle/wrapper/gradle-wrapper.jar

-75 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Fri Aug 25 15:48:59 MDT 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip

gradlew

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"
3535

36-
warn ( ) {
36+
warn () {
3737
echo "$*"
3838
}
3939

40-
die ( ) {
40+
die () {
4141
echo
4242
echo "$*"
4343
echo
@@ -155,7 +155,7 @@ if $cygwin ; then
155155
fi
156156

157157
# Escape application args
158-
save ( ) {
158+
save () {
159159
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160160
echo " "
161161
}

0 commit comments

Comments
 (0)