You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2017/06/10 09:51:58 UTC

svn commit: r1798303 - in /webservices/axiom/trunk/third_party: ./ BUILD

Author: veithen
Date: Sat Jun 10 09:51:58 2017
New Revision: 1798303

URL: http://svn.apache.org/viewvc?rev=1798303&view=rev
Log:
Add files missing in r1798301.

Added:
    webservices/axiom/trunk/third_party/
    webservices/axiom/trunk/third_party/BUILD

Added: webservices/axiom/trunk/third_party/BUILD
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/third_party/BUILD?rev=1798303&view=auto
==============================================================================
--- webservices/axiom/trunk/third_party/BUILD (added)
+++ webservices/axiom/trunk/third_party/BUILD Sat Jun 10 09:51:58 2017
@@ -0,0 +1,50 @@
+#
+# 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.
+#
+
+package(default_visibility = ["//visibility:public"])
+
+java_library(
+    name = "junit",
+    exports = [
+        "@junit//jar",
+    ],
+    testonly = 1,
+)
+
+java_library(
+    name = "mockito",
+    exports = [
+        "@mockito_core//jar",
+    ],
+    runtime_deps = [
+        "@byte_buddy//jar",
+        "@objenesis//jar",
+    ],
+    testonly = 1,
+)
+
+java_library(
+    name = "xerces",
+    exports = [
+        "@xerces//jar",
+    ],
+    runtime_deps = [
+        "@xml_apis//jar",
+    ],
+)