This is an automated email from the ASF dual-hosted git repository. veithen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push: new c620c111b Remove more Bazel files c620c111b is described below commit c620c111b0f8b83fe9b479ea9551a17405468914 Author: Andreas Veithen <andreas.veit...@gmail.com> AuthorDate: Tue Jan 2 11:46:05 2024 +0000 Remove more Bazel files --- third_party/ops4j-base.BUILD | 53 ------------------ third_party/ops4j-pax-swissbox.BUILD | 46 ---------------- third_party/ops4j-pax-tinybundles.BUILD | 32 ----------- third_party/ops4j-pax-url.BUILD | 54 ------------------ third_party/spring-ws.BUILD | 97 --------------------------------- third_party/spring-ws.patch | 51 ----------------- 6 files changed, 333 deletions(-) diff --git a/third_party/ops4j-base.BUILD b/third_party/ops4j-base.BUILD deleted file mode 100644 index e670b6b0b..000000000 --- a/third_party/ops4j-base.BUILD +++ /dev/null @@ -1,53 +0,0 @@ -# -# 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 = "io", - srcs = glob(["ops4j-base-io/src/main/java/**/*.java"]), - deps = [ - ":lang", - ":monitors", - ], -) - -java_library( - name = "lang", - srcs = glob(["ops4j-base-lang/src/main/java/**/*java"]), -) - -java_library( - name = "monitors", - srcs = glob(["ops4j-base-monitors/src/main/java/**/*java"]), -) - -java_library( - name = "store", - srcs = glob(["ops4j-base-store/src/main/java/**/*.java"]), - deps = [ - "@slf4j_api//jar", - ":io", - ], -) - -java_library( - name = "util-property", - srcs = glob(["ops4j-base-util-property/src/main/java/**/*java"]), -) diff --git a/third_party/ops4j-pax-swissbox.BUILD b/third_party/ops4j-pax-swissbox.BUILD deleted file mode 100644 index e511c8ed7..000000000 --- a/third_party/ops4j-pax-swissbox.BUILD +++ /dev/null @@ -1,46 +0,0 @@ -# -# 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 = "lifecycle", - srcs = glob(["pax-swissbox-lifecycle/src/main/java/**/*.java"]), -) - -java_library( - name = "property", - srcs = glob(["pax-swissbox-property/src/main/java/**/*.java"]), - deps = [ - "@ops4j_base//:lang", - "@ops4j_base//:util-property", - "@osgi_core//jar", - ], -) - -java_library( - name = "tracker", - srcs = glob(["pax-swissbox-tracker/src/main/java/**/*.java"]), - deps = [ - "@ops4j_base//:lang", - "@osgi_core//jar", - "@slf4j_api//jar", - ":lifecycle", - ], -) diff --git a/third_party/ops4j-pax-tinybundles.BUILD b/third_party/ops4j-pax-tinybundles.BUILD deleted file mode 100644 index 579b86957..000000000 --- a/third_party/ops4j-pax-tinybundles.BUILD +++ /dev/null @@ -1,32 +0,0 @@ -# -# 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 = "tinybundles", - srcs = glob(["src/main/java/**/*.java"]), - deps = [ - "@bndlib//jar", - "@ops4j_base//:io", - "@ops4j_base//:lang", - "@ops4j_base//:store", - "@slf4j_api//jar", - ] -) diff --git a/third_party/ops4j-pax-url.BUILD b/third_party/ops4j-pax-url.BUILD deleted file mode 100644 index faff9263c..000000000 --- a/third_party/ops4j-pax-url.BUILD +++ /dev/null @@ -1,54 +0,0 @@ -# -# 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 = "commons", - srcs = glob(["pax-url-commons/src/main/java/**/*.java"]), - deps = [ - "@ops4j_base//:lang", - "@ops4j_base//:util-property", - "@ops4j_pax_swissbox//:property", - "@osgi_compendium//jar", - "@osgi_core//jar", - "@slf4j_api//jar", - ], -) - -java_library( - name = "classpath", - srcs = glob(["pax-url-classpath/src/main/java/**/*.java"]), - deps = [ - "@ops4j_base//:lang", - "@ops4j_base//:util-property", - "@osgi_core//jar", - ":commons", - ], -) - -java_library( - name = "link", - srcs = glob(["pax-url-link/src/main/java/**/*.java"]), - deps = [ - "@ops4j_base//:util-property", - "@osgi_core//jar", - ":commons", - ], -) diff --git a/third_party/spring-ws.BUILD b/third_party/spring-ws.BUILD deleted file mode 100644 index a632a80b2..000000000 --- a/third_party/spring-ws.BUILD +++ /dev/null @@ -1,97 +0,0 @@ -# -# 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 = "xml", - srcs = glob(["spring-xml/src/main/java/**/*.java"]), - deps = [ - "@commons_logging//jar", - "@jaxen//jar", - "@spring_beans//jar", - "@spring_context//jar", - "@spring_core//jar", - "@xmlschema//jar", - ], -) - -java_library( - name = "core", - srcs = glob(["spring-ws-core/src/main/java/**/*.java"]), - resources = glob(["spring-ws-core/src/main/resources/**"]), - deps = [ - "@axiom//axiom-api", - "@axiom//axiom-api:stax", - "@axiom//axiom-compat", - "@commons_logging//jar", - "@dom4j//jar", - "@httpclient//jar", - "@httpclient3//jar", - "@httpcore//jar", - "@jdom2//jar", - "@servlet//jar", - "@spring_aop//jar", - "@spring_beans//jar", - "@spring_context//jar", - "@spring_core//jar", - "@spring_oxm//jar", - "@spring_web//jar", - "@spring_webmvc//jar", - "@wsdl4j//jar", - "@xom//jar", - ":xml", - ], -) - -java_library( - name = "core-tests", - srcs = glob(["spring-ws-core/src/test/java/**/*.java"]), - resources = glob(["spring-ws-core/src/test/resources/**"]), - deps = [ - "@aspectj_runtime//jar", - "@axiom//axiom-api", - "@axiom//axiom-compat", - "@commons_logging//jar", - "@dom4j//jar", - "@easymock//jar", - "@hamcrest//jar", - "@httpclient//jar", - "@httpclient3//jar", - "@httpcore//jar", - "@javamail//jar", - "@jdom2//jar", - "@jetty//jar", - "@jetty_util//jar", - "@junit//jar", - "@log4j//jar", - "@servlet//jar", - "@spring_beans//jar", - "@spring_context//jar", - "@spring_core//jar", - "@spring_oxm//jar", - "@spring_test//jar", - "@spring_web//jar", - "@wsdl4j//jar", - "@xmlunit//jar", - "@xom//jar", - ":core", - ":xml", - ], -) diff --git a/third_party/spring-ws.patch b/third_party/spring-ws.patch deleted file mode 100644 index 8d09b9ed0..000000000 --- a/third_party/spring-ws.patch +++ /dev/null @@ -1,51 +0,0 @@ -diff --git a/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap11Header.java b/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap11Header.java -index 9ec4a7b..a132272 100644 ---- spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap11Header.java -+++ spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap11Header.java -@@ -48,7 +48,7 @@ class AxiomSoap11Header extends AxiomSoapHeader implements Soap11Header { - if (!ObjectUtils.isEmpty(actors)) { - rolePlayer = new RolePlayer() { - -- public List<?> getRoles() { -+ public List<String> getRoles() { - return Arrays.asList(actors); - } - -diff --git a/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap12Header.java b/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap12Header.java -index b8e2049..92882a8 100644 ---- spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap12Header.java -+++ spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoap12Header.java -@@ -88,7 +88,7 @@ class AxiomSoap12Header extends AxiomSoapHeader implements Soap12Header { - if (!ObjectUtils.isEmpty(roles)) { - rolePlayer = new RolePlayer() { - -- public List<?> getRoles() { -+ public List<String> getRoles() { - return Arrays.asList(roles); - } - -diff --git a/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapHeader.java b/spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapHeader.java -index f88c902..7e70a95 100644 ---- spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapHeader.java -+++ spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapHeader.java -@@ -114,9 +114,9 @@ abstract class AxiomSoapHeader extends AxiomSoapElement implements SoapHeader { - - protected class AxiomSoapHeaderElementIterator implements Iterator<SoapHeaderElement> { - -- private final Iterator<SOAPHeaderBlock> axiomIterator; -+ private final Iterator<? extends OMElement> axiomIterator; - -- protected AxiomSoapHeaderElementIterator(Iterator<SOAPHeaderBlock> axiomIterator) { -+ protected AxiomSoapHeaderElementIterator(Iterator<? extends OMElement> axiomIterator) { - this.axiomIterator = axiomIterator; - } - -@@ -128,7 +128,7 @@ abstract class AxiomSoapHeader extends AxiomSoapElement implements SoapHeader { - @Override - public SoapHeaderElement next() { - try { -- SOAPHeaderBlock axiomHeaderBlock = axiomIterator.next(); -+ SOAPHeaderBlock axiomHeaderBlock = (SOAPHeaderBlock)axiomIterator.next(); - return new AxiomSoapHeaderElement(axiomHeaderBlock, getAxiomFactory()); - } - catch (OMException ex) {