~ubuntu-branches/ubuntu/saucy/commons-configuration/saucy

« back to all changes in this revision

Viewing changes to conf/dataset.xml

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-07-01 16:29:44 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130701162944-98waq5gogha5gpn1
Tags: 1.9-1
* New upstream release
* debian/control:
  - Updated Standards-Version to 3.9.4 (no changes)
  - Use canonical URLs for the Vcs-* fields
  - Added new build dependencies (libjavacc-maven-plugin-java, junit4)
  - Upgraded the dependency on the Servlet API (2.5 -> 3.0)
  - Removed the dependency on the Activation Framework (glassfish-activation)
  - Replaced the dependency on glassfish-mail with libgnumail-java
  - Removed the unused dependencies:
    liblog4j1.2-java-doc, libmaven-assembly-plugin-java
  - Replaced the dependency on libcommons-jexl-java by libcommons-jexl2-java
* debian/watch: Changed to point the official Apache distribution server
* Removed the obsolete file debian/ant.properties
* Installed the upstream changelog in the binary packages
* Added the report plugins to maven.ignoreRules
* Added the classpath attribute to the jar manifest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<!DOCTYPE dataset SYSTEM "dataset.dtd">
3
 
 
4
 
<!-- dbunit DataSet for the TestDatabaseConfiguration test -->
5
 
<dataset>
6
 
 
7
 
    <table name="configuration">
8
 
        <column>key</column>
9
 
        <column>value</column>
10
 
        <row>
11
 
            <value>key1</value>
12
 
            <value>value1</value>
13
 
        </row>
14
 
        <row>
15
 
            <value>key2</value>
16
 
            <value>value2</value>
17
 
        </row>
18
 
        <row>
19
 
            <value>keyMulti</value>
20
 
            <value>a;b;c</value>
21
 
        </row>
22
 
    </table>
23
 
 
24
 
    <table name="configurations">
25
 
        <column>name</column>
26
 
        <column>key</column>
27
 
        <column>value</column>
28
 
        <row>
29
 
            <value>test</value>
30
 
            <value>key1</value>
31
 
            <value>value1</value>
32
 
        </row>
33
 
        <row>
34
 
            <value>test</value>
35
 
            <value>key2</value>
36
 
            <value>value2</value>
37
 
        </row>
38
 
    </table>
39
 
    <table name="configurationList">
40
 
                <column>id</column>
41
 
        <column>key</column>
42
 
        <column>value</column>
43
 
        <row>
44
 
                        <value>1</value>
45
 
            <value>key3</value>
46
 
            <value>value1</value>
47
 
        </row>          
48
 
        <row>
49
 
                        <value>2</value>
50
 
            <value>key3</value>
51
 
            <value>value2</value>
52
 
        </row>                  
53
 
        <row>
54
 
                        <value>3</value>                        
55
 
            <value>key3</value>
56
 
            <value>value3</value>
57
 
        </row>                  
58
 
    </table>    
59
 
 
60
 
</dataset>