set version to 1.5.0
This commit is contained in:
parent
682926ea32
commit
d0a1058050
2
build.md
2
build.md
|
@ -26,7 +26,7 @@ mvn -Pbuild clean package;
|
||||||
mvn -B -Dusername=(scm_username) clean install release:clean release:prepare release:perform;
|
mvn -B -Dusername=(scm_username) clean install release:clean release:prepare release:perform;
|
||||||
|
|
||||||
## Make site
|
## Make site
|
||||||
mvn -Ptest-jacoco clean test
|
mvn -Ptest-jacoco clean install
|
||||||
mvn -Pbuild-site site:site
|
mvn -Pbuild-site site:site
|
||||||
|
|
||||||
Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite
|
Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>net.forwardfire.tpquery</groupId>
|
<groupId>net.forwardfire.tpquery</groupId>
|
||||||
<artifactId>tpquery</artifactId>
|
<artifactId>tpquery</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>TPQuery</name>
|
<name>TPQuery</name>
|
||||||
<description>TemplatedPreparedQuery</description>
|
<description>TemplatedPreparedQuery</description>
|
||||||
|
|
|
@ -10,7 +10,7 @@ TPQuery is a java8 library providing templated prepared statements.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.forwardfire.tpquery</groupId>
|
<groupId>net.forwardfire.tpquery</groupId>
|
||||||
<artifactId>tpquery-store</artifactId>
|
<artifactId>tpquery-store</artifactId>
|
||||||
<version>x.x.x</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
@ -33,8 +33,8 @@ Add unit tests for any new or changed functionality. Style and test your code.
|
||||||
|
|
||||||
## Release History
|
## Release History
|
||||||
|
|
||||||
### Version x.x.0
|
### Version 1.5.0
|
||||||
* First public release
|
* First public release
|
||||||
* Fourth rewrite of idea.
|
* fifth rewrite of idea.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.forwardfire.tpquery</groupId>
|
<groupId>net.forwardfire.tpquery</groupId>
|
||||||
<artifactId>tpquery</artifactId>
|
<artifactId>tpquery</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>tpquery-executor-jdbc</artifactId>
|
<artifactId>tpquery-executor-jdbc</artifactId>
|
||||||
<name>TPQuery Executor JDBC</name>
|
<name>TPQuery Executor JDBC</name>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* Jdbc executor.
|
* Default jdbc executor.
|
||||||
*
|
*
|
||||||
* @author Willem Cazander
|
* @author Willem Cazander
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.forwardfire.tpquery</groupId>
|
<groupId>net.forwardfire.tpquery</groupId>
|
||||||
<artifactId>tpquery</artifactId>
|
<artifactId>tpquery</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>tpquery-executor-jpa</artifactId>
|
<artifactId>tpquery-executor-jpa</artifactId>
|
||||||
<name>TPQuery Executor JPA</name>
|
<name>TPQuery Executor JPA</name>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* Persistance executor.
|
* Default jpa executor.
|
||||||
*
|
*
|
||||||
* @author Willem Cazander
|
* @author Willem Cazander
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.forwardfire.tpquery</groupId>
|
<groupId>net.forwardfire.tpquery</groupId>
|
||||||
<artifactId>tpquery</artifactId>
|
<artifactId>tpquery</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>1.5.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>tpquery-store</artifactId>
|
<artifactId>tpquery-store</artifactId>
|
||||||
<name>TPQuery Store</name>
|
<name>TPQuery Store</name>
|
||||||
|
|
Loading…
Reference in a new issue