FELIX-2625 Small improvements
- Remove Declarative Services dependency (use plain old Activator)
- Remove unneeded logging
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1238474 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/gogo/pom.xml b/webconsole-plugins/gogo/pom.xml
index 30f9a5e..e155deb 100644
--- a/webconsole-plugins/gogo/pom.xml
+++ b/webconsole-plugins/gogo/pom.xml
@@ -58,38 +58,6 @@
</plugin>
<plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-scr-plugin</artifactId>
- <version>1.7.2</version>
- <!-- As QDox is trying to inspect/load the classes
- we have to add a slf4j implementation to the
- class path of the plugin - we usually use
- a static field for the logger and during class
- loading this field requires an slf4j implementation!
- -->
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.2</version>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <id>generate-scr-scrdescriptor</id>
- <goals>
- <goal>scr</goal>
- </goals>
- <configuration>
- <properties>
- <service.vendor>The Apache Software Foundation</service.vendor>
- </properties>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
@@ -116,9 +84,11 @@
<Bundle-NativeCode>
META-INF/native/windows32/jansi.dll;osname=Win32;processor=x86,
META-INF/native/windows64/jansi.dll;osname=Win32;processor=x86-64,
+ <!--
META-INF/native/linux32/libjansi.so;osname=Linux;processor=x86,
META-INF/native/linux64/libjansi.so;osname=Linux;processor=x86-64,
META-INF/native/osx/libjansi.jnilib;osname=MacOSX,
+ -->
*
</Bundle-NativeCode>
</instructions>
@@ -147,12 +117,6 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.5.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.webconsole</artifactId>
<version>3.0.0</version>
@@ -170,11 +134,5 @@
<version>2.5</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.scr.annotations</artifactId>
- <version>1.6.0</version>
- <scope>provided</scope>
- </dependency>
</dependencies>
</project>