You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by sa...@apache.org on 2006/09/28 01:04:15 UTC

svn commit: r450625 - in /incubator/felix/trunk/jmxintrospector: README.txt pom.xml

Author: santillan
Date: Wed Sep 27 16:04:14 2006
New Revision: 450625

URL: http://svn.apache.org/viewvc?view=rev&rev=450625
Log:
Now using the more license-friendly cglib instead of javassist

Modified:
    incubator/felix/trunk/jmxintrospector/README.txt
    incubator/felix/trunk/jmxintrospector/pom.xml

Modified: incubator/felix/trunk/jmxintrospector/README.txt
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/jmxintrospector/README.txt?view=diff&rev=450625&r1=450624&r2=450625
==============================================================================
--- incubator/felix/trunk/jmxintrospector/README.txt (original)
+++ incubator/felix/trunk/jmxintrospector/README.txt Wed Sep 27 16:04:14 2006
@@ -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/
 
 

Modified: incubator/felix/trunk/jmxintrospector/pom.xml
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/jmxintrospector/pom.xml?view=diff&rev=450625&r1=450624&r2=450625
==============================================================================
--- incubator/felix/trunk/jmxintrospector/pom.xml (original)
+++ incubator/felix/trunk/jmxintrospector/pom.xml Wed Sep 27 16:04:14 2006
@@ -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>