-
Notifications
You must be signed in to change notification settings - Fork 0
Commands
flurdy edited this page Sep 14, 2010
·
3 revisions
mvn -o -DskipTests jetty:run
mvn -o -Dtest=com.flurdy.grid.snaps.service.SomeServiceTest test
mvn -o clean install
mvn clean install deploy
mvn -o -DskipTests -Dhibernate.dialect=org.hibernate.dialect.HSQLDialect \
-P hbm-export compile hibernate3:hbm2ddl
mvn -o -P sqlmaven sql:execute
mvn -o -P dbunit dbunit:operation
mvn -o -P dbunit dbunit:export;
cp target/dbunit/export.xml src/test/data/stub.xml
mvn -o -DskipTests -Dhibernate.dialect=org.hibernate.dialect.HSQLDialect \
-P hbm-export,sqlmaven,dbunit \
clean compile hibernate3:hbm2ddl sql:execute dbunit:operation
rm -rf target/db; mvn -o -DskipTests -P sqlmaven,dbunit \
sql:execute dbunit:operation jetty:run