filter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dk.apaq.filter</groupId>
<artifactId>filter</artifactId>
<version>1.0.10</version>
</dependency><?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dk.apaq.filter</groupId>
<artifactId>filter</artifactId>
<name>Filter</name>
<packaging>pom</packaging>
<version>1.0.10</version>
<url>http://apaq.dk/projects/filter</url>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/filter/issues/list</url>
</issueManagement>
<inceptionYear>2011</inceptionYear>
<scm>
<connection>scm:svn:https://filter.googlecode.com/svn/tags/filter-1.0.10</connection>
<developerConnection>scm:svn:https://filter.googlecode.com/svn/tags/filter-1.0.10</developerConnection>
<url>http://code.google.com/p/filter/source/browse/tags/filter-1.0.10</url>
</scm>
<organization>
<name>Apaq</name>
<url>http://apaq.dk</url>
</organization>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>filter-core</module>
<module>filter-jpa</module>
<module>filter-lucene</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>sonatype-snapshot</id>
<name>Sonatype snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-release</id>
<name>Sonatype release</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<description>An API for filtering, sorting and limiting data - mostly for Crud backends but usable for more.</description>
<developers>
<developer>
<name>Michael Krog</name>
<organization>Apaq</organization>
<email>mic@apaq.dk</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>Commercial Vaadin Add-On License 1.0</name>
<url>http://vaadin.com/license/cval-1.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
</plugins>
</build>
</project>