Repository: servicemix-bundles Updated Branches: refs/heads/master f58e64a9f -> a79e9b46c
[SM-3552] Create OSGi bundle for gwt-servlet 2.8.2 Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/a79e9b46 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/a79e9b46 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/a79e9b46 Branch: refs/heads/master Commit: a79e9b46cdcf996a7e7ad3347e0d5a6409f82310 Parents: f58e64a Author: Jean-Baptiste Onofré <[email protected]> Authored: Tue Nov 28 16:50:22 2017 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Tue Nov 28 16:50:22 2017 +0100 ---------------------------------------------------------------------- gwt-servlet-2.8.1/pom.xml | 121 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 13 -- gwt-servlet-2.8.2/pom.xml | 120 ++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 13 ++ pom.xml | 1 + 5 files changed, 134 insertions(+), 134 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a79e9b46/gwt-servlet-2.8.1/pom.xml ---------------------------------------------------------------------- diff --git a/gwt-servlet-2.8.1/pom.xml b/gwt-servlet-2.8.1/pom.xml deleted file mode 100644 index 7c57dc5..0000000 --- a/gwt-servlet-2.8.1/pom.xml +++ /dev/null @@ -1,121 +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.gwt-servlet</artifactId> - <version>2.8.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>com.google.gwt</pkgGroupId> - <pkgArtifactId>gwt-servlet</pkgArtifactId> - <pkgVersion>2.8.1</pkgVersion> - <servicemix.osgi.export> - com.google.gwt.user.client.rpc;version=${pkgVersion};-split-package:=merge-first, - com.google.gwt.user.client.rpc.*;version=${pkgVersion};-split-package:=merge-first, - com.google.web.bindery.requestfactory.vm.impl.*;version=${pkgVersion};-split-package:=merge-first, - org.hibernate.validator.engine;version=${pkgVersion};-split-package:=merge-first, - !javax.validation, - !org.hibernate.validator.*, - !*.client.*, - !*.impl.*, - *;version=${pkgVersion};-split-package:=merge-first - </servicemix.osgi.export> - <servicemix.osgi.import.pkg> - javax.servlet.*, - javax.validation;resolution:=optional, - javax.validation.*;resolution:=optional, - org.json;resolution:=optional, - <!--!com.google.gwt.*,--> - *;resolution:=optional - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg> - com.google.gwt.*;-split-package:=merge-first, - com.google.web.bindery.*;-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> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - </filters> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a79e9b46/gwt-servlet-2.8.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/gwt-servlet-2.8.1/src/main/resources/OSGI-INF/bundle.info b/gwt-servlet-2.8.1/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index 3716cfb..0000000 --- a/gwt-servlet-2.8.1/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,13 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. - GWT is used by many products at Google, including Google AdWords and Orkut. It's open source, completely free, - and used by thousands of developers around the world. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://code.google.com/webtoolkit/\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a79e9b46/gwt-servlet-2.8.2/pom.xml ---------------------------------------------------------------------- diff --git a/gwt-servlet-2.8.2/pom.xml b/gwt-servlet-2.8.2/pom.xml new file mode 100644 index 0000000..f96c414 --- /dev/null +++ b/gwt-servlet-2.8.2/pom.xml @@ -0,0 +1,120 @@ +<?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.gwt-servlet</artifactId> + <version>2.8.2_1-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> + </scm> + + <properties> + <pkgGroupId>com.google.gwt</pkgGroupId> + <pkgArtifactId>gwt-servlet</pkgArtifactId> + <pkgVersion>2.8.2</pkgVersion> + <servicemix.osgi.export> + com.google.gwt.user.client.rpc;version=${pkgVersion};-split-package:=merge-first, + com.google.gwt.user.client.rpc.*;version=${pkgVersion};-split-package:=merge-first, + com.google.web.bindery.requestfactory.vm.impl.*;version=${pkgVersion};-split-package:=merge-first, + org.hibernate.validator.engine;version=${pkgVersion};-split-package:=merge-first, + !javax.validation, + !org.hibernate.validator.*, + !*.client.*, + !*.impl.*, + *;version=${pkgVersion};-split-package:=merge-first + </servicemix.osgi.export> + <servicemix.osgi.import.pkg> + javax.servlet.*, + javax.validation;resolution:=optional, + javax.validation.*;resolution:=optional, + org.json;resolution:=optional, + <!--!com.google.gwt.*,--> + *;resolution:=optional + </servicemix.osgi.import.pkg> + <servicemix.osgi.private.pkg> + com.google.gwt.*;-split-package:=merge-first, + com.google.web.bindery.*;-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> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**/*</exclude> + </excludes> + </filter> + </filters> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a79e9b46/gwt-servlet-2.8.2/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/gwt-servlet-2.8.2/src/main/resources/OSGI-INF/bundle.info b/gwt-servlet-2.8.2/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..3716cfb --- /dev/null +++ b/gwt-servlet-2.8.2/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,13 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. + GWT is used by many products at Google, including Google AdWords and Orkut. It's open source, completely free, + and used by thousands of developers around the world. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://code.google.com/webtoolkit/\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/a79e9b46/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1dd6c36..2b090d2 100644 --- a/pom.xml +++ b/pom.xml @@ -75,6 +75,7 @@ <module>gae-1.9.59</module> <module>htmlunit-2.28</module> <module>zxing-3.3.1</module> + <module>gwt-servlet-2.8.2</module> </modules> </project>
