Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 8a4d208b4 -> c5eca63fe


couldn't get native Python lambda code instrospection to work generally. 
suxoid....... howevewr, I did do some pom.xml cleanup and META-INF shizzzzz.


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

Branch: refs/heads/TINKERPOP-1278
Commit: c5eca63fee56ab56b209f4a8216485093ede8c11
Parents: 8a4d208
Author: Marko A. Rodriguez <okramma...@gmail.com>
Authored: Thu Jul 7 13:58:04 2016 -0600
Committer: Marko A. Rodriguez <okramma...@gmail.com>
Committed: Thu Jul 7 13:58:04 2016 -0600

----------------------------------------------------------------------
 gremlin-python/pom.xml                          | 17 ++++++++++++++---
 .../services/javax.script.ScriptEngineFactory   | 20 ++++++++++++++++++++
 2 files changed, 34 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/c5eca63f/gremlin-python/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index 84fccad..cdc5741 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -194,7 +194,7 @@
                 <configuration>
                     <filesets>
                         <fileset>
-                            
<directory>${basedir}/src/main/jython/gremlin_rest_driver</directory>
+                            
<directory>${basedir}/src/main/jython/gremlin_python</directory>
                             <includes>
                                 <include>**/*.pyc</include>
                                 <include>**/*.class</include>
@@ -205,7 +205,7 @@
                             <followSymlinks>false</followSymlinks>
                         </fileset>
                         <fileset>
-                            
<directory>${basedir}/src/main/jython/gremlin_python.driver</directory>
+                            
<directory>${basedir}/src/main/jython/gremlin_python/driver</directory>
                             <includes>
                                 <include>**/*.pyc</include>
                                 <include>**/*.class</include>
@@ -216,7 +216,18 @@
                             <followSymlinks>false</followSymlinks>
                         </fileset>
                         <fileset>
-                            
<directory>${basedir}/src/main/jython/gremlin_python</directory>
+                            
<directory>${basedir}/src/main/jython/gremlin_python/process</directory>
+                            <includes>
+                                <include>**/*.pyc</include>
+                                <include>**/*.class</include>
+                            </includes>
+                            <excludes>
+                                <exclude>**/*.py</exclude>
+                            </excludes>
+                            <followSymlinks>false</followSymlinks>
+                        </fileset>
+                        <fileset>
+                            
<directory>${basedir}/src/main/jython/gremlin_python/structure</directory>
                             <includes>
                                 <include>**/*.pyc</include>
                                 <include>**/*.class</include>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/c5eca63f/gremlin-python/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
----------------------------------------------------------------------
diff --git 
a/gremlin-python/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
 
b/gremlin-python/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
new file mode 100644
index 0000000..3dda102
--- /dev/null
+++ 
b/gremlin-python/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
@@ -0,0 +1,20 @@
+#
+#  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.
+#
+
+org.apache.tinkerpop.gremlin.python.jsr223.GremlinJythonScriptEngineFactory
\ No newline at end of file

Reply via email to