filter-sort-jooq-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.blackdread</groupId> <artifactId>filter-sort-jooq-api</artifactId> <version>1.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.blackdread</groupId> <artifactId>filter-sort-jooq-api</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>Filter Sort jOOQ API</name> <description>Module to ease filtering and sorting with jOOQ based on params from a query (or any thing as we use a Map). </description> <!--<url>http://filter-sort-jooq-api.blackdread.org</url>--> <url>https://github.com/blackdread/filter-sort-jooq-api</url> <inceptionYear>2017</inceptionYear> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <guava.version>27.0-jre</guava.version> <jooq.version>3.11.5</jooq.version> <javax.validation.version>2.0.0.Final</javax.validation.version> <spring.data.version>2.0.0.RELEASE</spring.data.version> <commons-lang3.version>3.6</commons-lang3.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <maven-javadoc-plugin.version>3.0.0-M1</maven-javadoc-plugin.version> <maven-site-plugin.version>3.6</maven-site-plugin.version> <maven-surefire-plugin.version>3.0.0-M1</maven-surefire-plugin.version> <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <junit.version>5.3.1</junit.version> <junit.surefire.plugin.version>1.0.1</junit.surefire.plugin.version> <!--<mockito.version>2.11.0</mockito.version>--> <jacoco-plugin.version>0.8.2</jacoco-plugin.version> <coveralls-plugin.version>4.3.0</coveralls-plugin.version> </properties> <scm> <connection>scm:git:https://github.com/blackdread/filter-sort-jooq-api.git</connection> <developerConnection>scm:git:https://github.com/blackdread/filter-sort-jooq-api.git</developerConnection> <url>https://github.com/blackdread/filter-sort-jooq-api</url> </scm> <licenses> <license> <name>MIT</name> <url>https://github.com/Blackdread/filter-sort-jooq-api/blob/master/LICENCE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>blackdread</id> <name>Yoann CAPLAIN</name> <email>yoann.caplain@blackdread.org</email> <url>http://blackdread.org</url> </developer> </developers> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <version>${jooq.version}</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>${javax.validation.version}</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>${spring.data.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <!--<dependency>--> <!--<groupId>org.apiguardian</groupId>--> <!--<artifactId>apiguardian-api</artifactId>--> <!--<version>1.0.0</version>--> <!--<scope>test</scope>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>org.mockito</groupId>--> <!--<artifactId>mockito-core</artifactId>--> <!--<version>${mockito.version}</version>--> <!--</dependency>--> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!--Only if not using sonatype staging plugin--> <!--http://central.sonatype.org/pages/apache-maven.html--> <!--<repository>--> <!--<id>ossrh</id>--> <!--<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>--> <!--</repository>--> </distributionManagement> <!-- To allow to not need to sign for snapshot deploy --> <!-- Until we decide to put GPG settings in Travis, we have to manually deploy releases --> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- To check --> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-release-plugin</artifactId>--> <!--<version>2.5.3</version>--> <!--<configuration>--> <!--<autoVersionSubmodules>true</autoVersionSubmodules>--> <!--<useReleaseProfile>false</useReleaseProfile>--> <!--<releaseProfiles>release</releaseProfiles>--> <!--<goals>deploy</goals>--> <!--</configuration>--> <!--</plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>${coveralls-plugin.version}</version> <!--<configuration>--> <!--<repoToken>token given by environment variables</repoToken>--> <!--</configuration>--> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>