Skip to content

Commit

Permalink
* Bump up versions snappydata 1.0.0-rc1, spark 2.1.1.1-rc1, store 1.5…
Browse files Browse the repository at this point in the history
….6-rc1

  and sparkJobserver 0.6.2.6-rc1
  • Loading branch information
Amogh Shetkar committed Aug 24, 2017
1 parent 0f8133f commit 35db19a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ allprojects {
apply plugin: "build-time-tracker"

group = 'io.snappydata'
version = '0.9'
version = '1.0.0-rc1'

// apply compiler options
tasks.withType(JavaCompile) {
Expand Down Expand Up @@ -99,7 +99,7 @@ allprojects {
scalaBinaryVersion = '2.11'
scalaVersion = scalaBinaryVersion + '.8'
sparkVersion = '2.1.1'
snappySparkVersion = '2.1.1.1'
snappySparkVersion = '2.1.1.1-rc1'
sparkDistName = "spark-${sparkVersion}-bin-hadoop2.7"
log4jVersion = '1.2.17'
slf4jVersion = '1.7.21'
Expand All @@ -112,7 +112,7 @@ allprojects {
thriftVersion = '0.9.3'
derbyVersion = '10.12.1.1'
pegdownVersion = '1.6.0'
snappyStoreVersion = '1.5.5'
snappyStoreVersion = '1.5.6-rc1'
pulseVersion = '1.5.1'
buildFlags = ''
createdBy = System.getProperty('user.name')
Expand All @@ -122,7 +122,7 @@ allprojects {
buildDate = new Date().format('yyyy-MM-dd HH:mm:ss Z')
buildNumber = new Date().format('MMddyy')
jdkVersion = System.getProperty('java.version')
sparkJobServerVersion = '0.6.2.5'
sparkJobServerVersion = '0.6.2.6-rc1'

gitCmd = "git --git-dir=${rootDir}/.git --work-tree=${rootDir}"
gitBranch = "${gitCmd} rev-parse --abbrev-ref HEAD".execute().text.trim()
Expand Down Expand Up @@ -404,6 +404,9 @@ subprojects {
}
exclude '**/*Suite.class'
exclude '**/*DUnitTest.class'
if (!rootProject.hasProperty('snappydata.enterprise')) {
exclude '**/*DUnitSecurityTest.class'
}

workingDir = "${testResultsBase}/dunit-security"

Expand Down
6 changes: 5 additions & 1 deletion cluster/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,9 @@ scalaTest {
cleanIntermediateFiles(project.path)
}
}
check.dependsOn test, scalaTest, dunitTest, dunitSecurityTest
check.dependsOn test, scalaTest, dunitTest
if (rootProject.hasProperty('snappydata.enterprise')) {
check.dependsOn dunitSecurityTest
}

archivesBaseName = 'snappydata-cluster_' + scalaBinaryVersion
6 changes: 5 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,11 @@ task getApacheSparkDist {
test.dependsOn ':cleanJUnit'
dunitTest.dependsOn getApacheSparkDist
dunitSecurityTest.dependsOn getApacheSparkDist
check.dependsOn test, scalaTest, dunitTest, dunitSecurityTest
check.dependsOn test, scalaTest, dunitTest
if (rootProject.hasProperty('snappydata.enterprise')) {
check.dependsOn dunitSecurityTest
}


archivesBaseName = 'snappydata-core_' + scalaBinaryVersion
shadowJar {
Expand Down
2 changes: 1 addition & 1 deletion spark
Submodule spark updated from 59339f to 86ef2b
2 changes: 1 addition & 1 deletion spark-jobserver
2 changes: 1 addition & 1 deletion store
Submodule store updated from 7dd9ca to bd25a5

0 comments on commit 35db19a

Please sign in to comment.