You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@toree.apache.org by lr...@apache.org on 2020/07/16 18:38:34 UTC

[incubator-toree] branch master updated (1e6e062 -> 46cf991)

This is an automated email from the ASF dual-hosted git repository.

lresende pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git.


    from 1e6e062  Update sbt plugins to latest versions
     new 57aabde  Syncronyze apache version on build artifacts
     new 687fdd8  Update to latest Apache parent pom version
     new 2ea5a63  Update link to Apache official repository in gitbox
     new 46cf991  Remove deprecated/obsolete and default setting

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.sbt                  | 7 +++----
 etc/tools/release-build.sh | 2 +-
 2 files changed, 4 insertions(+), 5 deletions(-)


[incubator-toree] 03/04: Update link to Apache official repository in gitbox

Posted by lr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git

commit 2ea5a636cf4f6d99e553fc21c774f4b9d4b4d28a
Author: Luciano Resende <lr...@apache.org>
AuthorDate: Thu Jul 16 11:25:42 2020 -0700

    Update link to Apache official repository in gitbox
---
 build.sbt                  | 2 +-
 etc/tools/release-build.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sbt b/build.sbt
index dffe963..7a99162 100644
--- a/build.sbt
+++ b/build.sbt
@@ -109,7 +109,7 @@ pomExtra in ThisBuild := {
     <url>git@github.com:apache/incubator-toree.git</url>
     <connection>scm:git:git@github.com:apache/incubator-toree.git</connection>
     <developerConnection>
-      scm:git:https://git-wip-us.apache.org/repos/asf/incubator-toree.git
+      scm:git:https://gitbox.apache.org/repos/asf/incubator-toree.git
     </developerConnection>
     <tag>HEAD</tag>
   </scm>
diff --git a/etc/tools/release-build.sh b/etc/tools/release-build.sh
index fa105a8..1f6a6fa 100755
--- a/etc/tools/release-build.sh
+++ b/etc/tools/release-build.sh
@@ -222,7 +222,7 @@ function checkout_code {
     mkdir target
     cd target
     rm -rf toree
-    git clone https://git-wip-us.apache.org/repos/asf/incubator-toree.git toree
+    git clone https://gitbox.apache.org/repos/asf/incubator-toree.git toree
     cd toree
     git checkout $GIT_REF
     git_hash=`git rev-parse --short HEAD`


[incubator-toree] 04/04: Remove deprecated/obsolete and default setting

Posted by lr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git

commit 46cf99199a187abf82bad832d6ba4a1fb816d4ef
Author: Luciano Resende <lr...@apache.org>
AuthorDate: Thu Jul 16 11:37:46 2020 -0700

    Remove deprecated/obsolete and default setting
---
 build.sbt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/build.sbt b/build.sbt
index 7a99162..f42b750 100644
--- a/build.sbt
+++ b/build.sbt
@@ -85,7 +85,6 @@ libraryDependencies in ThisBuild ++= Seq(
 )
 
 // Publish settings
-useGpg in ThisBuild := true
 pgpPassphrase in ThisBuild := Some(Properties.envOrElse("GPG_PASSWORD","").toArray)
 publishTo in ThisBuild := {
   if (isSnapshot.value)


[incubator-toree] 02/04: Update to latest Apache parent pom version

Posted by lr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git

commit 687fdd8db4e2d3dc58634ba2faed60a2d0e73b07
Author: Luciano Resende <lr...@apache.org>
AuthorDate: Thu Jul 16 11:24:24 2020 -0700

    Update to latest Apache parent pom version
---
 build.sbt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.sbt b/build.sbt
index aff32a6..dffe963 100644
--- a/build.sbt
+++ b/build.sbt
@@ -102,7 +102,7 @@ pomExtra in ThisBuild := {
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>10</version>
+    <version>23</version>
   </parent>
   <url>http://toree.incubator.apache.org/</url>
   <scm>


[incubator-toree] 01/04: Syncronyze apache version on build artifacts

Posted by lr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-toree.git

commit 57aabde3d38cc3aee1fcd7b51321430df53ea79b
Author: Luciano Resende <lr...@apache.org>
AuthorDate: Thu Jul 16 11:23:41 2020 -0700

    Syncronyze apache version on build artifacts
---
 build.sbt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.sbt b/build.sbt
index 78669df..aff32a6 100644
--- a/build.sbt
+++ b/build.sbt
@@ -26,7 +26,7 @@ crossScalaVersions in ThisBuild := Seq("2.11.12")
 scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
 Dependencies.sparkVersion in ThisBuild := {
   val envVar = "APACHE_SPARK_VERSION"
-  val defaultVersion = "2.0.0"
+  val defaultVersion = "2.3.4"
 
   Properties.envOrNone(envVar) match {
     case None =>