mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
23 lines
594 B
Bash
23 lines
594 B
Bash
#!/bin/sh
|
|
rm -rf target/dist
|
|
mkdir target/dist
|
|
|
|
echo "Creating javadocs"
|
|
mvn javadoc:aggregate
|
|
|
|
echo "Creating release bundles"
|
|
for module in collections hibernate-search jpa jdo lucene sql
|
|
do
|
|
cd ../querydsl-$module
|
|
mvn -Dtest= clean assembly:assembly
|
|
done
|
|
|
|
echo "Creating reference documentation"
|
|
cd ../querydsl-docs
|
|
mvn -Dxslthl.config=http://docbook.sourceforge.net/release/xsl/current/highlighting/xslthl-config.xml clean package
|
|
mkdir ../querydsl-root/target/dist/reference
|
|
cp -R target/docbook/publish/en-US/* ../querydsl-root/target/dist/reference/
|
|
cd ../querydsl-root
|
|
|
|
echo "done."
|