spring-specification-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hall-wong</groupId>
<artifactId>spring-specification-builder</artifactId>
<version>0.5.0</version>
</dependency><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 "> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <modelVersion> 4.0.0 </modelVersion> <groupId>com.github.hall-wong</groupId> <artifactId>spring-specification-builder</artifactId> <version>0.5.0</version> <name>SpringSpecificationBuilder</name> <description>An easy way to build Spring JPA Specification instances</description> <url>https://github.com/hall-wong/SpringSpecificationBuilder</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>actable</distribution> </license> </licenses> <developers> <developer> <name>hallwong</name> <email>hallwong@163.com</email> <url>https://github.com/hall-wong</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:hall-wong/SpringSpecificationBuilder.git</connection> <developerConnection>scm:git:git@github.com:hall-wong/SpringSpecificationBuilder.git</developerConnection> <url>https://github.com/hall-wong/SpringSpecificationBuilder</url> </scm> <distributionManagement> <!-- <snapshotRepository> --> <!-- <id>sonatype-nexus-staging</id> --> <!-- <name>OSS Staging Repository</name> --> <!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url> --> <!-- </snapshotRepository> --> <repository> <id>sonatype-nexus-staging</id> <name>OSS Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>2.1.0.RELEASE</version> </dependency> <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <version>2.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- <plugin> --> <!-- <groupId>org.apache.maven.plugins</groupId> --> <!-- <artifactId>maven-jarsigner-plugin</artifactId> --> <!-- <version>3.0.0</version> --> <!-- <executions> --> <!-- <execution> --> <!-- <id>sign</id> --> <!-- <goals> --> <!-- <goal>sign</goal> --> <!-- </goals> --> <!-- </execution> --> <!-- </executions> --> <!-- <configuration> --> <!-- <keystore>pro</keystore> --> <!-- <alias>pro</alias> --> <!-- <storepass>nopass</storepass> --> <!-- <keypass>nopass</keypass> --> <!-- </configuration> --> <!-- </plugin> --> </plugins> </build> </project>