a3121e3
--- runtime/Java/pom.xml.orig	2015-11-24 22:48:17.908747868 +0000
a3121e3
+++ runtime/Java/pom.xml	2015-11-24 22:48:37.201489113 +0000
a3121e3
@@ -64,4 +64,22 @@
a3121e3
 
a3121e3
   </dependencies>
a3121e3
 
a3121e3
+<build>
a3121e3
+    <plugins>
a3121e3
+        <plugin>
a3121e3
+            <groupId>org.apache.felix</groupId><artifactId>maven-bundle-plugin</artifactId>
a3121e3
+            <executions><execution><id>bundle-manifest</id><phase>process-classes</phase><goals><goal>manifest</goal></goals></execution></executions>
a3121e3
+            <configuration>
a3121e3
+                <manifestLocation>${project.build.directory}/osgi</manifestLocation>
a3121e3
+                <instructions><Bundle-SymbolicName>org.antlr.runtime</Bundle-SymbolicName><Import-Package>!org.antlr.stringtemplate,*</Import-Package></instructions>
a3121e3
+            </configuration>
a3121e3
+        </plugin>
a3121e3
+        <plugin>
a3121e3
+            <groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId>
a3121e3
+            <configuration>
a3121e3
+                <archive><manifestFile>${project.build.directory}/osgi/MANIFEST.MF</manifestFile></archive>
a3121e3
+            </configuration>
a3121e3
+        </plugin>
a3121e3
+    </plugins>
a3121e3
+</build>
a3121e3
 </project>