query-string-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alexkasko.springjdbc</groupId> <artifactId>query-string-builder</artifactId> <version>1.2</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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.alexkasko.springjdbc</groupId> <artifactId>query-string-builder</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>SQL Query Strings Builder Library</name> <description> Small library for building SQL query strings. Provides API for building conjunctions, disjunctions, negations and comma-separated lists </description> <url>https://github.com/alexkasko/query-string-builder</url> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <url>https://github.com/alexkasko/query-string-builder</url> <connection>scm:git:https://github.com/alexkasko/query-string-builder.git</connection> <developerConnection>scm:git:https://github.com/alexkasko/query-string-builder.git</developerConnection> <tag>1.2</tag> </scm> <developers> <developer> <name>Alex Kasko</name> <email>alex.kasko.mail@gmail.com</email> <url>http://alexkasko.com</url> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.specification_vendor>Alex Kasko</project.specification_vendor> <project.implementation_vendor>${project.specification_vendor}</project.implementation_vendor> </properties> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>ru.concerteza.buildnumber</groupId> <artifactId>maven-jgit-buildnumber-plugin</artifactId> <version>1.2.6</version> <executions> <execution> <id>git-buildnumber</id> <goals> <goal>extract-buildnumber</goal> </goals> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>${project.specification_vendor}</Specification-Vendor> <Implementation-Title>${project.groupId}.${project.artifactId}</Implementation-Title> <Implementation-Version>${git.revision}</Implementation-Version> <Implementation-Vendor>${project.implementation_vendor}</Implementation-Vendor> <X-Git-Branch>${git.branch}</X-Git-Branch> <X-Git-Tag>${git.tag}</X-Git-Tag> <X-Git-Commits-Count>${git.commitsCount}</X-Git-Commits-Count> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <linksource>true</linksource> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <passphrase>nopwd</passphrase> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> <configuration> <pushChanges>false</pushChanges> <tagNameFormat>@{project.version}</tagNameFormat> <localCheckout>true</localCheckout> </configuration> </plugin> </plugins> </build> </project>