Remove ff prefix and updated root text files.
This commit is contained in:
parent
58b0155c2b
commit
ccd7320be5
|
@ -1,3 +1,6 @@
|
|||
LICENSE
|
||||
=========
|
||||
|
||||
Copyright (c) 2015, Willem Cazander
|
||||
All rights reserved.
|
||||
|
12
README.md
12
README.md
|
@ -1,7 +1,7 @@
|
|||
FF-TPQuery
|
||||
TPQuery
|
||||
=========
|
||||
|
||||
FF-TPQuery is a java8 library providing templated prepared statements with native parameter support.
|
||||
TPQuery is a java8 library providing templated prepared statements with native parameter support.
|
||||
|
||||
## Features
|
||||
|
||||
|
@ -22,7 +22,7 @@ FF-TPQuery is a java8 library providing templated prepared statements with nativ
|
|||
|
||||
<dependency>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery-executor-jpa</artifactId>
|
||||
<artifactId>tpquery-executor-jpa</artifactId>
|
||||
<version>1.5.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
@ -35,9 +35,9 @@ FF-TPQuery is a java8 library providing templated prepared statements with nativ
|
|||
* readme.md - This file.
|
||||
* todo.md - Small todo list.
|
||||
* src - site source.
|
||||
* ff-tpquery-executor-jdbc - Jdbc executor implementation. (SQL only)
|
||||
* ff-tpquery-executor-jpa - JPA executor implementation. (SQL and HQL)
|
||||
* ff-tpquery-store - The query store library.
|
||||
* tpquery-executor-jdbc - Jdbc executor implementation. (SQL only)
|
||||
* tpquery-executor-jpa - JPA executor implementation. (SQL and HQL)
|
||||
* tpquery-store - The query store library.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
|
10
pom.xml
10
pom.xml
|
@ -2,10 +2,10 @@
|
|||
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>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery</artifactId>
|
||||
<artifactId>tpquery</artifactId>
|
||||
<version>1.5.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>FF TPQuery</name>
|
||||
<name>TPQuery</name>
|
||||
<description>TemplatedPreparedQuery</description>
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
<organization>
|
||||
|
@ -24,9 +24,9 @@
|
|||
<maven>3.0.1</maven>
|
||||
</prerequisites>
|
||||
<modules>
|
||||
<module>ff-tpquery-executor-jdbc</module>
|
||||
<module>ff-tpquery-executor-jpa</module>
|
||||
<module>ff-tpquery-store</module>
|
||||
<module>tpquery-executor-jdbc</module>
|
||||
<module>tpquery-executor-jpa</module>
|
||||
<module>tpquery-store</module>
|
||||
</modules>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
|
|
@ -3,15 +3,15 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery</artifactId>
|
||||
<artifactId>tpquery</artifactId>
|
||||
<version>1.5.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>ff-tpquery-executor-jdbc</artifactId>
|
||||
<name>FF TPQuery Executor JDBC</name>
|
||||
<artifactId>tpquery-executor-jdbc</artifactId>
|
||||
<name>TPQuery Executor JDBC</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>ff-tpquery-store</artifactId>
|
||||
<artifactId>tpquery-store</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
|
@ -3,15 +3,15 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery</artifactId>
|
||||
<artifactId>tpquery</artifactId>
|
||||
<version>1.5.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>ff-tpquery-executor-jpa</artifactId>
|
||||
<name>FF TPQuery Executor JPA</name>
|
||||
<artifactId>tpquery-executor-jpa</artifactId>
|
||||
<name>TPQuery Executor JPA</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery-store</artifactId>
|
||||
<artifactId>tpquery-store</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
|
@ -3,11 +3,11 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>ff-tpquery</artifactId>
|
||||
<artifactId>tpquery</artifactId>
|
||||
<version>1.5.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>ff-tpquery-store</artifactId>
|
||||
<name>FF TPQuery Store</name>
|
||||
<artifactId>tpquery-store</artifactId>
|
||||
<name>TPQuery Store</name>
|
||||
<properties>
|
||||
<pitest.classes>net.forwardfire.tpquery*</pitest.classes>
|
||||
</properties>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue