[gora] branch master updated: [GORA-638] Add gora-ignite into the gora-tutorial module (#195)

2020-03-03 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
 new 6b7e9a7  [GORA-638] Add gora-ignite into the gora-tutorial module 
(#195)
6b7e9a7 is described below

commit 6b7e9a7b6c9b6a6c1982da45b160783970a45285
Author: José Ortiz 
AuthorDate: Wed Mar 4 01:26:34 2020 -0500

[GORA-638] Add gora-ignite into the gora-tutorial module (#195)

* Add ignite to gora-tutorial

* Add logging configurations for Ignite

* Revert changes in pom.xml
---
 gora-tutorial/conf/gora-ignite-mapping.xml | 40 
 gora-tutorial/conf/gora.properties |  8 ++-
 gora-tutorial/pom.xml  |  7 +-
 .../META-INF/config/java.util.logging.properties   | 74 ++
 4 files changed, 127 insertions(+), 2 deletions(-)

diff --git a/gora-tutorial/conf/gora-ignite-mapping.xml 
b/gora-tutorial/conf/gora-ignite-mapping.xml
new file mode 100644
index 000..5b0237a
--- /dev/null
+++ b/gora-tutorial/conf/gora-ignite-mapping.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+  
+  
+
+
+
+
+
+
+
+
+
+  
+  
+  
+
+
+
+
+  
+
diff --git a/gora-tutorial/conf/gora.properties 
b/gora-tutorial/conf/gora.properties
index a1b2433..718a27a 100644
--- a/gora-tutorial/conf/gora.properties
+++ b/gora-tutorial/conf/gora.properties
@@ -23,6 +23,7 @@ gora.datastore.default=org.apache.gora.hbase.store.HBaseStore
 #gora.datastore.default=org.apache.gora.aerospike.store.AerospikeStore
 #gora.datastore.default=org.apache.gora.mongodb.store.MongoStore
 #gora.datastore.default=org.apache.gora.kudu.store.KuduStore
+#gora.datastore.default=org.apache.gora.ignite.store.IgniteStore
 
 #gora.datastore.default=org.apache.gora.avro.store.AvroStore
 #gora.avrostore.input.path=hdfs://localhost:9000/gora.avrostore.test.input
@@ -76,4 +77,9 @@ 
gora.datastore.jcache.provider=com.hazelcast.cache.impl.HazelcastServerCachingPr
 #gora.mongodb.writeconcern=acknowledged
 
 ##Kudu dataStore properties
-#gora.datastore.kudu.masterAddresses=localhost:7051
\ No newline at end of file
+#gora.datastore.kudu.masterAddresses=localhost:7051
+
+##Ignite dataStore properties
+#gora.datastore.ignite.schema=PUBLIC
+#gora.datastore.ignite.host=localhost
+#gora.datastore.ignite.port=10800
\ No newline at end of file
diff --git a/gora-tutorial/pom.xml b/gora-tutorial/pom.xml
index bbc94ee..e89ff95 100644
--- a/gora-tutorial/pom.xml
+++ b/gora-tutorial/pom.xml
@@ -138,7 +138,12 @@
   org.apache.gora
   gora-mongodb
 
-
+
+
+  org.apache.gora
+  gora-ignite
+
+
 
   org.apache.gora
   gora-kudu
diff --git 
a/gora-tutorial/src/main/resources/META-INF/config/java.util.logging.properties 
b/gora-tutorial/src/main/resources/META-INF/config/java.util.logging.properties
new file mode 100644
index 000..72e267f
--- /dev/null
+++ 
b/gora-tutorial/src/main/resources/META-INF/config/java.util.logging.properties
@@ -0,0 +1,74 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#
+#   Default java.util.logging configuration for Ignite.
+#
+# To use another config file use `java.util.logging.config.file` system
+# property. For example `java -Djava.util.logging.config.file=myfile`
+#
+
+#
+# Comma-separated list of logging "handlers". Note that some of them may be
+# reconfigured (or even removed) at runtime according to system properties.
+#
+# By default all messages will be passed to console and file.
+#
+handlers=java.util.logging.ConsoleHandler, 
org.apache.ignite.logger.java.JavaLoggerFileHandler
+
+#
+# Default global logging level.
+# This specifies which kinds of events are logged across all loggers.
+# For any given category this global level can be overriden by a category
+# specific level.
+# Note that handlers also have a separate level setting to limit messages
+# printed through it.
+#
+.level=OFF
+
+#
+# Uncomment to allow debug 

[gora] branch master updated: Use HTTPS instead of HTTP to resolve dependencies (#199)

2020-03-03 Thread djkevincr
This is an automated email from the ASF dual-hosted git repository.

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
 new 00abd59  Use HTTPS instead of HTTP to resolve dependencies (#199)
00abd59 is described below

commit 00abd59c982c76157ac5863b4edc3732f7a49e0e
Author: Jonathan Leitschuh 
AuthorDate: Tue Mar 3 19:16:59 2020 -0500

Use HTTPS instead of HTTP to resolve dependencies (#199)

This fixes a security vulnerability in this project where the `pom.xml`
files were configuring Maven to resolve dependencies over HTTP instead of
HTTPS.

Signed-off-by: Jonathan Leitschuh 
---
 gora-couchdb/pom.xml | 2 +-
 gora-solr/pom.xml| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gora-couchdb/pom.xml b/gora-couchdb/pom.xml
index 430fcef..df464b7 100644
--- a/gora-couchdb/pom.xml
+++ b/gora-couchdb/pom.xml
@@ -120,7 +120,7 @@
   
 
   clojars.org
-  http://clojars.org/repo
+  https://clojars.org/repo
 
   
 
diff --git a/gora-solr/pom.xml b/gora-solr/pom.xml
index f9faf79..e488c61 100644
--- a/gora-solr/pom.xml
+++ b/gora-solr/pom.xml
@@ -106,7 +106,7 @@
 
   maven-restlet
   Public online Restlet repository
-  http://maven.restlet.org
+  https://maven.restlet.org