http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.1.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.1.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.1.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.1.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m
http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.1.1/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.1.1/pom.xml b/elasticsearch-2.1.1/pom.xml deleted file mode 100644 index 31e7695..0000000 --- a/elasticsearch-2.1.1/pom.xml +++ /dev/null @@ -1,132 +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>12</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.1.1_4-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.1.1</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml, - com.fasterxml.jackson.dataformat.smile, - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - org.apache.regexp, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.* - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.1.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.1.1/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.1.1/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.1.1/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.2.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.2.0/pom.xml b/elasticsearch-2.2.0/pom.xml deleted file mode 100644 index d227489..0000000 --- a/elasticsearch-2.2.0/pom.xml +++ /dev/null @@ -1,132 +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>12</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.2.0_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.2.0</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml, - com.fasterxml.jackson.dataformat.smile, - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - org.apache.regexp, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.* - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.2.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.2.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.2.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.2.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.3.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.3.0/pom.xml b/elasticsearch-2.3.0/pom.xml deleted file mode 100644 index 22a4dc5..0000000 --- a/elasticsearch-2.3.0/pom.xml +++ /dev/null @@ -1,131 +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>13</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.3.0_3-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.3.0</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)", - com.fasterxml.jackson.dataformat.smile;version="[2.6,3)", - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.*;-split-package:=merge-first - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.3.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.3.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.3.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.3.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.3.1/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.3.1/pom.xml b/elasticsearch-2.3.1/pom.xml deleted file mode 100644 index e2eeaae..0000000 --- a/elasticsearch-2.3.1/pom.xml +++ /dev/null @@ -1,131 +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>13</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.3.1_3-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.3.1</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)", - com.fasterxml.jackson.dataformat.smile;version="[2.6,3)", - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.*;-split-package:=merge-first - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.3.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.3.1/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.3.1/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.3.1/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.4.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.4.0/pom.xml b/elasticsearch-2.4.0/pom.xml deleted file mode 100644 index 0a8c82b..0000000 --- a/elasticsearch-2.4.0/pom.xml +++ /dev/null @@ -1,131 +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>13</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.4.0_3-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.4.0</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)", - com.fasterxml.jackson.dataformat.smile;version="[2.6,3)", - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.*;-split-package:=merge-first - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.4.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.4.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.4.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.4.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.4.3/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-2.4.3/pom.xml b/elasticsearch-2.4.3/pom.xml deleted file mode 100644 index 45bfc31..0000000 --- a/elasticsearch-2.4.3/pom.xml +++ /dev/null @@ -1,131 +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>13</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>2.4.3_3-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>2.4.3</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)", - com.fasterxml.jackson.dataformat.smile;version="[2.6,3)", - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - com.twitter.jsr166e, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.*;-split-package:=merge-first - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-2.4.3/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-5.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-5.2.1/pom.xml b/elasticsearch-5.2.1/pom.xml deleted file mode 100644 index 81631fc..0000000 --- a/elasticsearch-5.2.1/pom.xml +++ /dev/null @@ -1,130 +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>13</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch</artifactId> - <version>5.2.1_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch</pkgArtifactId> - <pkgVersion>5.2.1</pkgVersion> - <servicemix.osgi.export.pkg> - org.elasticsearch - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.collect, - com.fasterxml.jackson.core;version="[2.6,3)", - com.fasterxml.jackson.dataformat.yaml;version="[2.6,3)", - com.fasterxml.jackson.dataformat.smile;version="[2.6,3)", - com.sun.jna;resolution:=optional, - com.ning.compress.lzf.util, - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.joda.time*;-split-package:=merge-first, - org.apache.lucene*;-split-package:=merge-first, - org.tartarus.snowball*, - com.tdunning.math.stats, - com.carrotsearch.hppc*, - META-INF.*;-split-package:=merge-first - </servicemix.osgi.private.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> - <include>org.apache.lucene:*</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <includes> - <include>config/**</include> - </includes> - </filter> - <filter> - <artifact>org.apache.lucene:*</artifact> - <includes> - <include>META-INF/services/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-5.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-5.2.1/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-5.2.1/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-5.2.1/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.0.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.0.0/pom.xml b/elasticsearch-repository-hdfs-2.0.0/pom.xml deleted file mode 100644 index 155e2e1..0000000 --- a/elasticsearch-repository-hdfs-2.0.0/pom.xml +++ /dev/null @@ -1,140 +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>11</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch-repository-hdfs</artifactId> - <version>2.0.0_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch-repository-hdfs</pkgArtifactId> - <pkgVersion>2.0.0</pkgVersion> - <servicemix.osgi.export.pkg> - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.apache.hadoop.*;version="[1.0,3.0)", - *;resolution:=optional, - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.elasticsearch.hadoop.hdfs.blobstore, - org.elasticsearch.plugin.hadoop.hdfs, - org.elasticsearch.repositories.hdfs - </servicemix.osgi.private.pkg> - <servicemix.osgi.fragment.host> - org.apache.servicemix.bundles.elasticsearch - </servicemix.osgi.fragment.host> - </properties> - - <repositories> - <repository> - <id>oss.sonatype.releases</id> - <name>OSS Sonatype Releases</name> - <url>https://oss.sonatype.org/content/repositories/releases</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - </repositories> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </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> - <includes> - <include>config/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.0.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.0.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-repository-hdfs-2.0.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-repository-hdfs-2.0.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.1.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.1.0/pom.xml b/elasticsearch-repository-hdfs-2.1.0/pom.xml deleted file mode 100644 index 52642a8..0000000 --- a/elasticsearch-repository-hdfs-2.1.0/pom.xml +++ /dev/null @@ -1,147 +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>12</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch-repository-hdfs</artifactId> - <version>2.1.0_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch-repository-hdfs</pkgArtifactId> - <pkgVersion>2.1.0</pkgVersion> - <servicemix.osgi.export.pkg> - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.apache.hadoop.*;version="[1.0,3.0)", - *;resolution:=optional, - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.elasticsearch.hadoop.hdfs.blobstore, - org.elasticsearch.plugin.hadoop.hdfs, - org.elasticsearch.repositories.hdfs - </servicemix.osgi.private.pkg> - <servicemix.osgi.fragment.host> - org.apache.servicemix.bundles.elasticsearch - </servicemix.osgi.fragment.host> - </properties> - - <repositories> - <repository> - <id>oss.sonatype.releases</id> - <name>OSS Sonatype Releases</name> - <url>https://oss.sonatype.org/content/repositories/releases</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - </repositories> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </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> - <includes> - <include>config/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.1.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.1.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-repository-hdfs-2.1.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-repository-hdfs-2.1.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.2.0/pom.xml ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.2.0/pom.xml b/elasticsearch-repository-hdfs-2.2.0/pom.xml deleted file mode 100644 index 26c32c8..0000000 --- a/elasticsearch-repository-hdfs-2.2.0/pom.xml +++ /dev/null @@ -1,147 +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>12</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.elasticsearch-repository-hdfs</artifactId> - <version>2.2.0_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.elasticsearch</pkgGroupId> - <pkgArtifactId>elasticsearch-repository-hdfs</pkgArtifactId> - <pkgVersion>2.2.0</pkgVersion> - <servicemix.osgi.export.pkg> - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.apache.hadoop.*;version="[1.0,3.0)", - *;resolution:=optional, - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - org.elasticsearch.hadoop.hdfs.blobstore, - org.elasticsearch.plugin.hadoop.hdfs, - org.elasticsearch.repositories.hdfs - </servicemix.osgi.private.pkg> - <servicemix.osgi.fragment.host> - org.apache.servicemix.bundles.elasticsearch - </servicemix.osgi.fragment.host> - </properties> - - <repositories> - <repository> - <id>oss.sonatype.releases</id> - <name>OSS Sonatype Releases</name> - <url>https://oss.sonatype.org/content/repositories/releases</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - </repositories> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <!-- - <exclusions> - <exclusion> - <groupId>org.apache.lucene</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - --> - </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> - <includes> - <include>config/**</include> - </includes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> - </transformers> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>true</createDependencyReducedPom> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/elasticsearch-repository-hdfs-2.2.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/elasticsearch-repository-hdfs-2.2.0/src/main/resources/OSGI-INF/bundle.info b/elasticsearch-repository-hdfs-2.2.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index af11bfd..0000000 --- a/elasticsearch-repository-hdfs-2.2.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,17 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - So, we build a web site or an application and want to add search to it, and - then it hits us: getting search working is hard. We want our search solution - to be fast, we want a painless setup and a completely free search schema, we - want to be able to index data simply using JSON over HTTP, we want our search - server to be always available, we want to be able to start with one machine - and scale to hundreds, we want real-time search, we want simple multi-tenancy, - and we want a solution that is built for the cloud. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.elasticsearch.org\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/esapi-2.0.1/pom.xml ---------------------------------------------------------------------- diff --git a/esapi-2.0.1/pom.xml b/esapi-2.0.1/pom.xml deleted file mode 100644 index f7ccd15..0000000 --- a/esapi-2.0.1/pom.xml +++ /dev/null @@ -1,108 +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>10</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.esapi</artifactId> - <version>2.0.1_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.owasp.esapi</pkgGroupId> - <pkgArtifactId>esapi</pkgArtifactId> - <pkgVersion>2.0.1</pkgVersion> - <servicemix.osgi.export.pkg> - org.owasp.esapi - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - bsh;resolution:=optional, - javax.crypto*, - javax.servlet*;resolution:=optional, - nu.xom;resolution:=optional, - org.apache.commons.beanutils, - org.apache.commons.collections.iterators, - org.apache.commons.configuration, - org.apache.commons.fileupload*;resolution:=optional, - org.apache.log4j*;resolution:=optional, - org.owasp.validator.html;version="[1.4,2)" - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/esapi-2.0.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/esapi-2.0.1/src/main/resources/OSGI-INF/bundle.info b/esapi-2.0.1/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index 711a397..0000000 --- a/esapi-2.0.1/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,38 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - ESAPI (The OWASP Enterprise Security API) is a free, open source, web application security - control library that makes it easier for programmers to write lower-risk applications. - The ESAPI libraries are designed to make it easier for programmers to retrofit security - into existing applications. The ESAPI libraries also serve as a solid foundation for new - development. - - Allowing for language-specific differences, all OWASP ESAPI versions have the same basic design: - - * There is a set of security control interfaces. They define for example types of parameters - that are passed to types of security controls. - - * There is a reference implementation for each security control. The logic is not - organizationâspecific and the logic is not applicationâspecific. An example: stringâbased - input validation. - - * There are optionally your own implementations for each security control. There may be - application logic contained in these classes which may be developed by or for your - organization. An example: enterprise authentication. - - This project source code is licensed under the BSD license, which is very permissive and about - as close to public domain as is possible. The project documentation is licensed under the - Creative Commons license. You can use or modify ESAPI however you want, even include it in - commercial products. - - The following organizations are a few of the many organizations that are starting to adopt - ESAPI to secure their web applications: American Express, Apache Foundation, Booz Allen Hamilton, - Aspect Security, Coraid, The Hartford, Infinite Campus, Lockheed Martin, MITRE, U.S. Navy - SPAWAR, - The World Bank, SANS Institute. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttps://www.owasp.org/index.php/Main_Page\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/428046ec/esapi-2.0GA/pom.xml ---------------------------------------------------------------------- diff --git a/esapi-2.0GA/pom.xml b/esapi-2.0GA/pom.xml deleted file mode 100644 index 5331955..0000000 --- a/esapi-2.0GA/pom.xml +++ /dev/null @@ -1,108 +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>10</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.esapi</artifactId> - <version>2.0GA_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.owasp.esapi</pkgGroupId> - <pkgArtifactId>esapi</pkgArtifactId> - <pkgVersion>2.0GA</pkgVersion> - <servicemix.osgi.export.pkg> - org.owasp.esapi - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - bsh;resolution:=optional, - javax.crypto*, - javax.servlet*;resolution:=optional, - nu.xom;resolution:=optional, - org.apache.commons.beanutils, - org.apache.commons.collections.iterators, - org.apache.commons.configuration, - org.apache.commons.fileupload*;resolution:=optional, - org.apache.log4j*;resolution:=optional, - org.owasp.validator.html;version="[1.4,2)" - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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> \ No newline at end of file
