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