rombert commented on code in PR #296:
URL: https://github.com/apache/aries/pull/296#discussion_r1863586558


##########
jmx/jmx-mbeanserver-platform/src/main/java/org/apache/aries/jmx/mbean_server/platform/impl/Activator.java:
##########
@@ -0,0 +1,72 @@
+/*
+ * 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 org.apache.aries.jmx.mbean_server.platform.impl;
+
+import java.lang.management.ManagementFactory;
+import java.util.Hashtable;
+
+import javax.management.Attribute;
+import javax.management.AttributeList;
+import javax.management.MBeanServer;
+import javax.management.ObjectName;
+
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.ServiceRegistration;
+
+public class Activator implements BundleActivator {
+
+    private final Object registrationLock = new Object();
+    private ServiceRegistration<MBeanServer> registration;
+
+    @Override
+    public void start(BundleContext context) throws Exception {

Review Comment:
   Hm, I am not sure what is going on ... . I think there are two things at 
play here:
   
   1. You already have all the needed jar downloaded locally. A second test run 
works for me as well without my pax-url version upgrade. Can you try building 
with an empty local Maven repository?
   2. The pax-exam ITs definitely fail with the same problems for me. I am not 
sure what to do, except trying to upgrade other bits of pax-exam, I recall that 
newer versions have better error output.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@aries.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to