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
|
mvn -Ptest-jacoco clean test
|
||||||
|
|
||||||
## Create build artifacts
|
## Create build artifacts
|
||||||
mvn -Pbuild clean package;
|
mvn -Pbuild clean package
|
||||||
|
|
||||||
## Change pom.xml versions
|
## Change pom.xml versions
|
||||||
mvn versions:set -DnewVersion=2.3.4-SNAPSHOT
|
mvn versions:set -DnewVersion=2.3.4-SNAPSHOT
|
||||||
|
|
||||||
## Make release build
|
## Make release build
|
||||||
mvn -Pbuild clean package;
|
mvn -Pbuild -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 install
|
mvn -Ptest-jacoco clean install
|
||||||
|
@ -33,6 +32,6 @@ Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite
|
||||||
And then manual upload.
|
And then manual upload.
|
||||||
|
|
||||||
## Check for dependency-updates
|
## Check for dependency-updates
|
||||||
mvn versions:display-plugin-updates|grep ">"|uniq;
|
mvn versions:display-plugin-updates|grep ">"|uniq
|
||||||
mvn versions:display-dependency-updates|grep ">"|uniq;
|
mvn versions:display-dependency-updates|grep ">"|uniq
|
||||||
|
|
||||||
|
|
18
readme.md
18
readme.md
|
@ -27,15 +27,15 @@ TPQuery is a java8 library providing templated prepared statements.
|
||||||
|
|
||||||
## Files in this package
|
## Files in this package
|
||||||
|
|
||||||
build.md - Developer build commands.
|
* build.md - Developer build commands.
|
||||||
license.txt - The license of tpquery.
|
* license.txt - The license of tpquery.
|
||||||
pom.xml - Maven specific build file.
|
* pom.xml - Maven specific build file.
|
||||||
readme.md - This file.
|
* readme.md - This file.
|
||||||
todo.md - Small todo list.
|
* todo.md - Small todo list.
|
||||||
src - site source.
|
* src - site source.
|
||||||
tpquery-executor-jdbc - Jdbc executor implementation.
|
* tpquery-executor-jdbc - Jdbc executor implementation.
|
||||||
tpquery-executor-jpa - JPA executor implementation.
|
* tpquery-executor-jpa - JPA executor implementation.
|
||||||
tpquery-store - The query store library.
|
* tpquery-store - The query store library.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue