Cleanup querydsl 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/3774a3ba Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/3774a3ba Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/3774a3ba Branch: refs/heads/master Commit: 3774a3ba193f1689bd75e71c74cb5e932bfb3c01 Parents: e7bfc17 Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jul 3 08:57:33 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jul 3 08:57:33 2017 +0200 ---------------------------------------------------------------------- querydsl-2.9.0/pom.xml | 163 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 37 ----- 2 files changed, 200 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3774a3ba/querydsl-2.9.0/pom.xml ---------------------------------------------------------------------- diff --git a/querydsl-2.9.0/pom.xml b/querydsl-2.9.0/pom.xml deleted file mode 100644 index c46718d..0000000 --- a/querydsl-2.9.0/pom.xml +++ /dev/null @@ -1,163 +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.querydsl</artifactId> - <version>2.9.0_2-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: querydsl</name> - <description>This OSGi bundle wraps querydsl-core, querydsl-apt, querydsl-codegen, querydsl-jdo, querydsl-lucene, querydsl-sql ${pkgVersion} jar files.</description> - - <properties> - <pkgGroupId>com.mysema.querydsl</pkgGroupId> - <pkgVersion>2.9.0</pkgVersion> - <servicemix.osgi.export.pkg> - com.mysema - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - com.google.common.*;version="[11.0,11.1)", - javax.annotation, - javax.annotation.processing, - javax.inject, - javax.jdo.*, - javax.lang.*, - javax.persistence, - javax.tools, - net.sf.cglib.proxy, - org.apache.lucene.*;version="[3.0,3.1)", - org.eclipse.jdt.core.*;version="[3.0,3.3)";resolution:=optional, - org.eclipse.jdt.internal.*;version="[3.0,3.3)";resolution:=optional, - org.joda.*;version="[1.6,2.4)", - org.slf4j;resolution:=optional - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-core</artifactId> - <version>${pkgVersion}</version> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-apt</artifactId> - <version>${pkgVersion}</version> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-codegen</artifactId> - <version>${pkgVersion}</version> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-jdo</artifactId> - <version>${pkgVersion}</version> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-lucene</artifactId> - <version>${pkgVersion}</version> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>querydsl-sql</artifactId> - <version>${pkgVersion}</version> - </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}:querydsl-core</include> - <include>${pkgGroupId}:querydsl-apt</include> - <include>${pkgGroupId}:querydsl-codegen</include> - <include>${pkgGroupId}:querydsl-jdo</include> - <include>${pkgGroupId}:querydsl-lucene</include> - <include>${pkgGroupId}:querydsl-sql</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:querydsl-core</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - <filter> - <artifact>${pkgGroupId}:querydsl-apt</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - <filter> - <artifact>${pkgGroupId}:querydsl-codegen</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - <filter> - <artifact>${pkgGroupId}:querydsl-jdo</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - <filter> - <artifact>${pkgGroupId}:querydsl-lucene</artifact> - <excludes> - <exclude>**/*</exclude> - </excludes> - </filter> - <filter> - <artifact>${pkgGroupId}:querydsl-sql</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/3774a3ba/querydsl-2.9.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/querydsl-2.9.0/src/main/resources/OSGI-INF/bundle.info b/querydsl-2.9.0/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index 3b3dc79..0000000 --- a/querydsl-2.9.0/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,37 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/querydsl-core/${pkgVersion}\u001B[0m - \u001B[33mmvn:${pkgGroupId}/querydsl-apt/${pkgVersion}\u001B[0m - \u001B[33mmvn:${pkgGroupId}/querydsl-codegen/${pkgVersion}\u001B[0m - \u001B[33mmvn:${pkgGroupId}/querydsl-jdo/${pkgVersion}\u001B[0m - \u001B[33mmvn:${pkgGroupId}/querydsl-lucene/${pkgVersion}\u001B[0m - \u001B[33mmvn:${pkgGroupId}/querydsl-sql/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends - including JPA, MongoDB and SQL in Java. - - Example for JPA: - - List<Customer> result = query.from(customer) - .where(customer.lastName.like("A%"), customer.active.eq(true)) - .orderBy(customer.lastName.asc(), customer.firstName.desc()) - .list(customer); - - Compared to the alternatives Querydsl is more compact, safer and easier to learn. Try it today! - - To run this bundle, it is required to install the following prerequistes: - mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1 - mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.java-persistence-api-1.1.1/2.4.0 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.guava/11.0.2_2 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-inject/1_2 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jdo2-api/2.2_1 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.cglib/2.2.2_1 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene/3.0.3_2 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jdt-core/3.2.3_5 - mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.joda-time/2.3_1 - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.querydsl.com/\u001B[0m
