Cleanup groovy as it's now a bundle natively

Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/0317999d
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/0317999d
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/0317999d

Branch: refs/heads/master
Commit: 0317999db38bfc440fdd12e6725e56f222fb3ea4
Parents: f5e4d26
Author: Jean-Baptiste Onofré <[email protected]>
Authored: Mon Jul 3 08:00:28 2017 +0200
Committer: Jean-Baptiste Onofré <[email protected]>
Committed: Mon Jul 3 08:00:28 2017 +0200

----------------------------------------------------------------------
 groovy-1.6.3/pom.xml                            | 120 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  25 ----
 2 files changed, 145 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0317999d/groovy-1.6.3/pom.xml
----------------------------------------------------------------------
diff --git a/groovy-1.6.3/pom.xml b/groovy-1.6.3/pom.xml
deleted file mode 100644
index c9e0185..0000000
--- a/groovy-1.6.3/pom.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-<?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/xsd/maven-4.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>9-SNAPSHOT</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.groovy</artifactId>
-    <version>1.6.3_3-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
-
-    <properties>
-        <pkgGroupId>org.codehaus.groovy</pkgGroupId>
-        <pkgArtifactId>groovy</pkgArtifactId>
-        <pkgVersion>1.6.3</pkgVersion>
-        <servicemix.osgi.export>
-            groovy*;version=${pkgVersion};-split-package:=merge-first,
-            
org.codehaus.groovy*;version=${pkgVersion};-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-            javax.accessibility,
-            javax.management*,
-            javax.script,
-            javax.sql,
-            javax.xml*,
-            org.w3c.dom,
-            org.xml.sax*,
-            org.objectweb.asm*;version="[2.2.3,3)",
-            antlr*;version="[2.7.7,3)",
-            com.thoughtworks.xstream*;resolution:=optional;version="[1.3,2)",
-            javax.servlet*;resolution:=optional;version="[2.4,3)",
-            javax.swing*;resolution:=optional,
-            jline*;resolution:=optional;version="[0.9.94,1)",
-            junit*;resolution:=optional;version="[3.8.2,4)",
-            org.apache.bsf*;resolution:=optional;version="[2.4,3)",
-            org.apache.commons.cli*;resolution:=optional;version="[1.2,2)",
-            org.apache.ivy*;resolution:=optional;version="[2,3)",
-            org.apache.tools.ant*;resolution:=optional;version="[1.7.1,2)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <optional>true</optional>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <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>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0317999d/groovy-1.6.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/groovy-1.6.3/src/main/resources/OSGI-INF/bundle.info 
b/groovy-1.6.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 8da1023..0000000
--- a/groovy-1.6.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,25 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Groovy...
-
-        * is an agile and dynamic language for the Java Virtual Machine
-        * builds upon the strengths of Java but has additional power features 
inspired by languages like Python,
-          Ruby and Smalltalk
-        * makes modern programming features available to Java developers with 
almost-zero learning curve
-        * supports Domain-Specific Languages and other compact syntax so your 
code becomes easy to read and
-          maintain
-        * makes writing shell and build scripts easy with its powerful 
processing primitives, OO abilities and
-          an Ant DSL
-        * increases developer productivity by reducing scaffolding code when 
developing web, GUI, database or
-          console applications
-        * simplifies testing by supporting unit testing and mocking 
out-of-the-box
-        * seamlessly integrates with all existing Java classes and libraries
-        * compiles straight to Java bytecode so you can use it anywhere you 
can use Java
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://groovy.codehaus.org/\u001B[0m

Reply via email to