fixed md syntax
This commit is contained in:
parent
a9d6128afe
commit
e29367f84d
9
build.md
9
build.md
|
@ -16,14 +16,13 @@ mvn clean test
|
|||
mvn -Ptest-jacoco clean test
|
||||
|
||||
## Create build artifacts
|
||||
mvn -Pbuild clean package;
|
||||
mvn -Pbuild clean package
|
||||
|
||||
## Change pom.xml versions
|
||||
mvn versions:set -DnewVersion=2.3.4-SNAPSHOT
|
||||
|
||||
## Make release build
|
||||
mvn -Pbuild clean package;
|
||||
mvn -B -Dusername=(scm_username) clean install release:clean release:prepare release:perform;
|
||||
mvn -Pbuild -Dusername=(scm_username) clean install release:clean release:prepare release:perform
|
||||
|
||||
## Make site
|
||||
mvn -Ptest-jacoco clean install
|
||||
|
@ -33,6 +32,6 @@ Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite
|
|||
And then manual upload.
|
||||
|
||||
## Check for dependency-updates
|
||||
mvn versions:display-plugin-updates|grep ">"|uniq;
|
||||
mvn versions:display-dependency-updates|grep ">"|uniq;
|
||||
mvn versions:display-plugin-updates|grep ">"|uniq
|
||||
mvn versions:display-dependency-updates|grep ">"|uniq
|
||||
|
||||
|
|
30
readme.md
30
readme.md
|
@ -18,24 +18,24 @@ TPQuery is a java8 library providing templated prepared statements.
|
|||
|
||||
Add maven deps;
|
||||
|
||||
<dependency>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>tpquery-store</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.forwardfire.tpquery</groupId>
|
||||
<artifactId>tpquery-store</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
## Files in this package
|
||||
|
||||
build.md - Developer build commands.
|
||||
license.txt - The license of tpquery.
|
||||
pom.xml - Maven specific build file.
|
||||
readme.md - This file.
|
||||
todo.md - Small todo list.
|
||||
src - site source.
|
||||
tpquery-executor-jdbc - Jdbc executor implementation.
|
||||
tpquery-executor-jpa - JPA executor implementation.
|
||||
tpquery-store - The query store library.
|
||||
* build.md - Developer build commands.
|
||||
* license.txt - The license of tpquery.
|
||||
* pom.xml - Maven specific build file.
|
||||
* readme.md - This file.
|
||||
* todo.md - Small todo list.
|
||||
* src - site source.
|
||||
* tpquery-executor-jdbc - Jdbc executor implementation.
|
||||
* tpquery-executor-jpa - JPA executor implementation.
|
||||
* tpquery-store - The query store library.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
|
Loading…
Reference in a new issue