Now using the more license-friendly cglib instead of javassist
git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@450625 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/jmxintrospector/README.txt b/jmxintrospector/README.txt
index 979b5b3..9e372c9 100644
--- a/jmxintrospector/README.txt
+++ b/jmxintrospector/README.txt
@@ -1,5 +1,5 @@
JMX introspector is a small library bundle that
-uses the Javassist library, the reflection API and
+uses the CGLIB library, the reflection API and
the metadata provided by JMX on the managed objects
to dynamically proxy remote MBeans, without having
the classes in your classpath.
@@ -10,18 +10,9 @@
It is used by the org.apache.felix.mishell project to create management clients
for felix jmood, but it can be used to manage any JMX agent.
-It currently uses Javassist version 3.3 for the generation
-of the interface classes, which is part of JBoss and
-can be downloaded from http://www.jboss.org
-or directly from https://sourceforge.net/project/showfiles.php?group_id=22866&package_id=80766
-Javassist is licensed under the Mozilla Public License and the LGPL.
-IMPORTANT:
-You need to install Javassist manually to your local maven repository
-in order to build this bundle, as it is not available at the repositories yet:
-
-mvn install:install-file -Dfile=<path-to-file> -DgroupId=javassist \
- -DartifactId=javassist -Dversion=3.3 -Dpackaging=jar
-
-//TODO
+It currently uses CGLIB 2.1_3 for the generation
+of the interface classes. CGLIB is released under the ASL and can be downloaded
+from:
+http://cglib.sourceforge.net/
diff --git a/jmxintrospector/pom.xml b/jmxintrospector/pom.xml
index e638d57..71f5358 100644
--- a/jmxintrospector/pom.xml
+++ b/jmxintrospector/pom.xml
@@ -46,8 +46,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.6</source><!--should fail if not java6-->
- <target>1.6</target>
+ <source>5</source><!--should fail if not java6-->
+ <target>5</target>
</configuration>
</plugin>
<plugin>