Database « Development « Maven/Ant Q&A

Home
Maven/Ant Q&A
1.Ant
2.artifact
3.dependency
4.deploy
5.Development
6.eclipse
7.glassfish
8.hudson
9.integration
10.jetty
11.junit
12.m2eclipse
13.module
14.netbeans
15.package
16.plugin
17.POM
18.repository
19.svn
Maven/Ant Q&A » Development » Database 

1. Filtering of values using a small databases instead of settings.xml in maven    stackoverflow.com

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 ...

2. Starting an H2 Database Server from Maven?    stackoverflow.com

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 ...

3. How to: database versioning with maven2?    stackoverflow.com

I am finding any maven plugin for versioning database changes.

4. Maven - use different java classes during 'test' and 'war' phase    stackoverflow.com

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 ...

5. liquibase using maven with two databases    stackoverflow.com

i have the following structure to run one database from maven:

<plugin>
            <groupId>org.liquibase</groupId>
         ...

6. problem running liquibase with maven and postgres-db    stackoverflow.com

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 ...

7. How to implement a roundtrip from XML Schema using Java with a Database    stackoverflow.com

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 ...

8. Exporting In-Memory HSQL Database Content as SQL During Maven Build    stackoverflow.com

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 ...

9. SOAPUI Error on asserts coming from the database    stackoverflow.com

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 ...

10. dbdeploy database downgrade (undo) with maven    stackoverflow.com

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 ...

11. Liquibase drop constraint    stackoverflow.com

I am truing to drop unique constraint using Liquibase

<code>
<changeSet id="it05-k44" author="igr">
        <dropUniqueConstraint tableName="ext_event" constraintName="description"/>
        <dropUniqueConstraint tableName="ext_system" ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.