You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/08/31 15:54:05 UTC

tinkerpop git commit: Fixed bad use of the flag on dependencies. CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master d2fc54f96 -> 4e8335ab1


Fixed bad use of the <optional> flag on dependencies. CTR

That was a dumb mistake. I guess the effect was largely the same from the packaging perspective which is why it wasn't noticed earlier.


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

Branch: refs/heads/master
Commit: 4e8335ab1f7c6023583cb9b7690726f6da7bfdc2
Parents: d2fc54f
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Aug 31 11:52:47 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Aug 31 11:52:47 2016 -0400

----------------------------------------------------------------------
 gremlin-console/pom.xml | 4 ++--
 gremlin-server/pom.xml  | 4 ++--
 gremlin-test/pom.xml    | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4e8335ab/gremlin-console/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml
index b1c5b56..e1a5a02 100644
--- a/gremlin-console/pom.xml
+++ b/gremlin-console/pom.xml
@@ -65,12 +65,12 @@ limitations under the License.
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>${slf4j.version}</version>
-            <scope>optional</scope>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <scope>optional</scope>
+            <optional>true</optional>
         </dependency>
         <!-- TESTING -->
         <dependency>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4e8335ab/gremlin-server/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-server/pom.xml b/gremlin-server/pom.xml
index 8980e5d..a449b99 100644
--- a/gremlin-server/pom.xml
+++ b/gremlin-server/pom.xml
@@ -49,12 +49,12 @@ limitations under the License.
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>${slf4j.version}</version>
-            <scope>optional</scope>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <scope>optional</scope>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>com.github.ben-manes.caffeine</groupId>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4e8335ab/gremlin-test/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-test/pom.xml b/gremlin-test/pom.xml
index 28df2e8..a5642ba 100644
--- a/gremlin-test/pom.xml
+++ b/gremlin-test/pom.xml
@@ -78,7 +78,7 @@ limitations under the License.
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>${slf4j.version}</version>
-            <scope>optional</scope>
+            <optional>true</optional>
         </dependency>
     </dependencies>
     <build>