Update release notes and publish storage JARs

Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/f8795ca4
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/f8795ca4
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/f8795ca4

Branch: refs/heads/develop
Commit: f8795ca499a2331302a0904e01c87d9e00944798
Parents: d0d2570
Author: Donald Szeto <[email protected]>
Authored: Thu Mar 30 15:24:34 2017 -0700
Committer: Donald Szeto <[email protected]>
Committed: Thu Mar 30 15:24:34 2017 -0700

----------------------------------------------------------------------
 RELEASE.md           |  5 ++++-
 build.sbt            | 19 +++++++------------
 make-distribution.sh |  2 +-
 3 files changed, 12 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/f8795ca4/RELEASE.md
----------------------------------------------------------------------
diff --git a/RELEASE.md b/RELEASE.md
index 3cc9259..db3549b 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -44,7 +44,10 @@ Apr ?, 2017
   parameter if you want to run `pio build`, `pio train`, or `pio deploy` 
outside
   of an engine directory. This is an interim solution before an engine registry
   feature becomes available in the future.
-- PIO-54: Generated access keys will no longer start with a `-` character.
+- PIO-49: PostgreSQL JDBC driver is no longer bundled with the core assembly. 
If
+  you are using PostgreSQL, you must download the JDBC driver and update your
+  configuration to point to the correct JDBC driver file.
+- PIO-54: New generated access keys will no longer start with a `-` character.
 
 #### Other Changes
 

http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/f8795ca4/build.sbt
----------------------------------------------------------------------
diff --git a/build.sbt b/build.sbt
index 06030cb..a0a41dd 100644
--- a/build.sbt
+++ b/build.sbt
@@ -108,32 +108,26 @@ val commonTestSettings = Seq(
 
 val dataElasticsearch1 = (project in file("storage/elasticsearch1")).
   settings(commonSettings: _*).
-  enablePlugins(GenJavadocPlugin).
-  settings(publishArtifact := false)
+  enablePlugins(GenJavadocPlugin)
 
 val dataElasticsearch = (project in file("storage/elasticsearch")).
-  settings(commonSettings: _*).
-  settings(publishArtifact := false)
+  settings(commonSettings: _*)
 
 val dataHbase = (project in file("storage/hbase")).
   settings(commonSettings: _*).
-  enablePlugins(GenJavadocPlugin).
-  settings(publishArtifact := false)
+  enablePlugins(GenJavadocPlugin)
 
 val dataHdfs = (project in file("storage/hdfs")).
   settings(commonSettings: _*).
-  enablePlugins(GenJavadocPlugin).
-  settings(publishArtifact := false)
+  enablePlugins(GenJavadocPlugin)
 
 val dataJdbc = (project in file("storage/jdbc")).
   settings(commonSettings: _*).
-  enablePlugins(GenJavadocPlugin).
-  settings(publishArtifact := false)
+  enablePlugins(GenJavadocPlugin)
 
 val dataLocalfs = (project in file("storage/localfs")).
   settings(commonSettings: _*).
-  enablePlugins(GenJavadocPlugin).
-  settings(publishArtifact := false)
+  enablePlugins(GenJavadocPlugin)
 
 val common = (project in file("common")).
   settings(commonSettings: _*).
@@ -184,6 +178,7 @@ val storageSubprojects = Seq(
 val storage = (project in file("storage"))
   .aggregate(storageSubprojects map Project.projectToRef: _*)
   .disablePlugins(sbtassembly.AssemblyPlugin)
+  .settings(publishArtifact := false)
 
 val assembly = (project in file("assembly")).
   settings(commonSettings: _*)

http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/f8795ca4/make-distribution.sh
----------------------------------------------------------------------
diff --git a/make-distribution.sh b/make-distribution.sh
index 03c15e8..09025ee 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -69,7 +69,7 @@ cd ${FWDIR}
 set -x
 sbt/sbt "${JAVA_PROPS[@]}" clean
 sbt/sbt "${JAVA_PROPS[@]}" printBuildInfo
-sbt/sbt "${JAVA_PROPS[@]}" publishLocal assembly storage/assembly
+sbt/sbt "${JAVA_PROPS[@]}" publishLocal assembly storage/publishLocal 
storage/assembly
 sbt/sbt "${JAVA_PROPS[@]}" assembly/clean assembly/universal:packageBin 
assembly/universal:packageZipTarball
 if [ x$RPM_BUILD = "xtrue" ] ; then
     sbt/sbt "${JAVA_PROPS[@]}" assembly/rpm:packageBin

Reply via email to