[SMX4-937] Add OSGi bundle for OGNL 3.0.2 and cleanup Javassist bundles.

git-svn-id: https://svn.apache.org/repos/asf/servicemix/smx4/bundles/trunk/javassist-3.12.1.GA@1179941 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..d035f24
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <!--
+
+        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.
+    -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>6</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+    
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.javassist</artifactId>
+    <version>3.12.1.GA_2-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+    
+    <properties>
+        <pkgGroupId>javassist</pkgGroupId>
+        <pkgArtifactId>javassist</pkgArtifactId>
+        <pkgVersion>3.12.1.GA</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            javassist
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !javassist*,
+            com.sun.jdi*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+   
+    <repositories>
+        <repository>
+            <id>jboss</id>
+            <name>New JBoss Maven2 Repository</name>
+            <url>http://repository.jboss.org/maven2-brew/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories> 
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/src/main/resources/OSGI-INF/bundle.info b/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..f3a55b9
--- /dev/null
+++ b/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,29 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:http://repository.jboss.org/maven2-brew/:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+	Javassist (Java Programming Assistant) makes Java bytecode manipulation
+	simple. It is a class library for editing bytecodes in Java; it enables
+	Java programs to define a new class at runtime and to modify a class file
+	when the JVM loads it. Unlike other similar bytecode editors, Javassist
+	provides two levels of API: source level and bytecode level. If the users
+	use the source-level API, they can edit a class file without knowledge of
+	the specifications of the Java bytecode. The whole API is designed with only
+	the vocabulary of the Java language. You can even specify inserted bytecode
+	in the form of source text; Javassist compiles it on the fly. On the other
+	hand, the bytecode-level API allows the users to directly edit a class file
+	as other editors.
+
+    Aspect Oriented Programming: Javassist can be a good tool for adding new
+    methods into a class and for inserting before/after/around advice at the
+    both caller and callee sides.
+
+    Reflection: One of applications of Javassist is runtime reflection; Javassist
+    enables Java programs to use a metaobject that controls method calls on
+    base-level objects. No specialized compiler or virtual machine are needed.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.csg.is.titech.ac.jp/~chiba/javassist/\u001B[0m