Correct me if I'm wrong but one normally puts deployment or user-specific properties (e.g. development/testserver settings) inside settings.xml. And by specifying which profiles to use, we can change the behaviour of ...
Suppose I want to create and use an H2 database for my integration tests.
Maven has a command to run tests: mvn test.
Is there a way to tell maven to start an ...
I'm using maven war plugin to build war package.
Before package is build test are executed. To preinitialize my database with sample data I use spring bean. I would like to have ...
I have a problem running maven's liquibase-plugin on a postgresql-db.
When trying to run liquibase:update from the command-line, I get the error message
[ERROR] Failed to execute goal org.liquibase:liquibase-plugin:1.9.5.0:update (de
fault-cli) on ...
What is the best way of implementing a roundtrip for receiving XML files and eventually persisting the data into a database using Java. Currently I have:
1. An XML Schema & XML ...
During a Maven build's integration test phase I am populating an in-memory HSQL database based on the performed tests. Afterwards, I would like to capture this state by exporting the database ...
When I run the test cases inside soapUI, everything works fine. But when I'm running the tests inside jenkins, the assertions fail as you can see in this gist:
https://gist.github.com/1104276
I'm ...
I configured dbdeploy with maven. Running deltas to the database works fine. But I can't figure out how to downgrade the database with undo parts of the deltas. I tried to ...