Skip to content

Commit 413cf84

Browse files
committed
refactor: git --renormalize files for line endings
1 parent 1838225 commit 413cf84

11 files changed

Lines changed: 1969 additions & 1969 deletions

File tree

LICENSE.txt

Lines changed: 501 additions & 501 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 530 additions & 530 deletions
Large diffs are not rendered by default.

src/example/pom.xml

Lines changed: 233 additions & 233 deletions
Large diffs are not rendered by default.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
drop table address if exists;
2-
drop table person if exists;
3-
create table person ( id integer, first_name varchar, last_name varchar, primary key (id));
4-
create table address ( id integer, street varchar, foreign key (id) references person(id));
5-
shutdown;
1+
drop table address if exists;
2+
drop table person if exists;
3+
create table person ( id integer, first_name varchar, last_name varchar, primary key (id));
4+
create table address ( id integer, street varchar, foreign key (id) references person(id));
5+
shutdown;

src/it/settings.xml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<!--
4-
Licensed to the Apache Software Foundation (ASF) under one
5-
or more contributor license agreements. See the NOTICE file
6-
distributed with this work for additional information
7-
regarding copyright ownership. The ASF licenses this file
8-
to you under the Apache License, Version 2.0 (the
9-
"License"); you may not use this file except in compliance
10-
with the License. You may obtain a copy of the License at
11-
12-
http://www.apache.org/licenses/LICENSE-2.0
13-
14-
Unless required by applicable law or agreed to in writing,
15-
software distributed under the License is distributed on an
16-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17-
KIND, either express or implied. See the License for the
18-
specific language governing permissions and limitations
19-
under the License.
20-
-->
21-
22-
<settings>
23-
<profiles>
24-
<profile>
25-
<id>it-repo</id>
26-
<activation>
27-
<activeByDefault>true</activeByDefault>
28-
</activation>
29-
<repositories>
30-
<repository>
31-
<id>local.central</id>
32-
<url>@localRepositoryUrl@</url>
33-
<releases>
34-
<enabled>true</enabled>
35-
</releases>
36-
<snapshots>
37-
<enabled>true</enabled>
38-
</snapshots>
39-
</repository>
40-
</repositories>
41-
<pluginRepositories>
42-
<pluginRepository>
43-
<id>local.central</id>
44-
<url>@localRepositoryUrl@</url>
45-
<releases>
46-
<enabled>true</enabled>
47-
</releases>
48-
<snapshots>
49-
<enabled>true</enabled>
50-
</snapshots>
51-
</pluginRepository>
52-
</pluginRepositories>
53-
</profile>
54-
</profiles>
55-
</settings>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!--
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
-->
21+
22+
<settings>
23+
<profiles>
24+
<profile>
25+
<id>it-repo</id>
26+
<activation>
27+
<activeByDefault>true</activeByDefault>
28+
</activation>
29+
<repositories>
30+
<repository>
31+
<id>local.central</id>
32+
<url>@localRepositoryUrl@</url>
33+
<releases>
34+
<enabled>true</enabled>
35+
</releases>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
</snapshots>
39+
</repository>
40+
</repositories>
41+
<pluginRepositories>
42+
<pluginRepository>
43+
<id>local.central</id>
44+
<url>@localRepositoryUrl@</url>
45+
<releases>
46+
<enabled>true</enabled>
47+
</releases>
48+
<snapshots>
49+
<enabled>true</enabled>
50+
</snapshots>
51+
</pluginRepository>
52+
</pluginRepositories>
53+
</profile>
54+
</profiles>
55+
</settings>

src/site/fml/faq.fml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
<?xml version="1.0" encoding="ISO-8859-1"?>
2-
3-
<faqs title="FAQ">
4-
<part id="dbunit">
5-
<title>DbUnit</title>
6-
<faq id="exportoracle">
7-
<question>
8-
I get an error when trying to export an oracle database.
9-
</question>
10-
<answer>
11-
Try setting the skipOracleRecycleBinTables property to true on the export mojo.
12-
</answer>
13-
</faq>
14-
</part>
15-
</faqs>
1+
<?xml version="1.0" encoding="ISO-8859-1"?>
2+
3+
<faqs title="FAQ">
4+
<part id="dbunit">
5+
<title>DbUnit</title>
6+
<faq id="exportoracle">
7+
<question>
8+
I get an error when trying to export an oracle database.
9+
</question>
10+
<answer>
11+
Try setting the skipOracleRecycleBinTables property to true on the export mojo.
12+
</answer>
13+
</faq>
14+
</part>
15+
</faqs>

src/site/site.xml

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<site xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd">
4-
5-
<bannerLeft name="" href="https://github.com/dbunit">
6-
<image src="/images/dbunit-logo.jpg"/>
7-
</bannerLeft>
8-
9-
<bannerRight name="" href="https://github.com">
10-
<image src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" width="48px" height="48px"/>
11-
</bannerRight>
12-
13-
<!-- position can be right, left, navigation-top, navigation-bottom, bottom -->
14-
<publishDate format="dd-MMM-yyyy" position="navigation-bottom" />
15-
16-
<skin>
17-
<groupId>org.apache.maven.skins</groupId>
18-
<artifactId>maven-fluido-skin</artifactId>
19-
<version>2.1.0</version>
20-
</skin>
21-
22-
<body>
23-
<head>
24-
<![CDATA[
25-
<link rel="icon" href="/images/favicon.ico" type="image/x-icon" />
26-
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
27-
]]>
28-
</head>
29-
30-
<links>
31-
<item name="main" href="https://github.com/dbunit/dbunit-maven-plugin/actions/workflows/build-any-branch.yml?query=branch%3Amain">
32-
<image src="https://github.com/dbunit/dbunit-maven-plugin/actions/workflows/build-any-branch.yml/badge.svg?branch=main"/>
33-
</item>
34-
<item name="" href="https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/dbunit/dbunit-maven-plugin/README.md">
35-
<image src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/org/dbunit/dbunit-maven-plugin/badge.json"/>
36-
</item>
37-
</links>
38-
39-
<breadcrumbs>
40-
<item name="DBUnit" href="https://github.com/dbunit"/>
41-
</breadcrumbs>
42-
43-
<menu name="Overview">
44-
<item name="Introduction" href="index.html" />
45-
<item name="Goals" href="plugin-info.html" />
46-
<item name="Usage" href="usage.html" />
47-
<item name="FAQ" href="faq.html" />
48-
<item name="Changes" href="/changes.html" />
49-
</menu>
50-
<menu name="Examples">
51-
<item name="Clean insert" href="examples/clean-insert.html" />
52-
<item name="Composite dataset" href="examples/clean-insert-composite-dataset.html"/>
53-
<item name="Export full database" href="examples/export-full.html" />
54-
<item name="Export with custom query" href="examples/export-custom-query.html" />
55-
<item name="Export DTD schema" href="examples/export-dtd.html" />
56-
<item name="settings" href="examples/settings.html" />
57-
</menu>
58-
<menu name="Developing DbUnit Maven Plugin">
59-
<!--
60-
TODO create these similar to dbUnit Extension site
61-
<item name="Building" href="/building.html"/>
62-
<item name="Developers Guide" href="/devguide.html"/>
63-
<item name="Integration Tests" href="/integrationtests.html"/>
64-
-->
65-
<item name="Releasing" href="/releasing.html"/>
66-
</menu>
67-
<menu ref="reports"/>
68-
</body>
69-
</site>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<site xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd">
4+
5+
<bannerLeft name="" href="https://github.com/dbunit">
6+
<image src="/images/dbunit-logo.jpg"/>
7+
</bannerLeft>
8+
9+
<bannerRight name="" href="https://github.com">
10+
<image src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" width="48px" height="48px"/>
11+
</bannerRight>
12+
13+
<!-- position can be right, left, navigation-top, navigation-bottom, bottom -->
14+
<publishDate format="dd-MMM-yyyy" position="navigation-bottom" />
15+
16+
<skin>
17+
<groupId>org.apache.maven.skins</groupId>
18+
<artifactId>maven-fluido-skin</artifactId>
19+
<version>2.1.0</version>
20+
</skin>
21+
22+
<body>
23+
<head>
24+
<![CDATA[
25+
<link rel="icon" href="/images/favicon.ico" type="image/x-icon" />
26+
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
27+
]]>
28+
</head>
29+
30+
<links>
31+
<item name="main" href="https://github.com/dbunit/dbunit-maven-plugin/actions/workflows/build-any-branch.yml?query=branch%3Amain">
32+
<image src="https://github.com/dbunit/dbunit-maven-plugin/actions/workflows/build-any-branch.yml/badge.svg?branch=main"/>
33+
</item>
34+
<item name="" href="https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/dbunit/dbunit-maven-plugin/README.md">
35+
<image src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/org/dbunit/dbunit-maven-plugin/badge.json"/>
36+
</item>
37+
</links>
38+
39+
<breadcrumbs>
40+
<item name="DBUnit" href="https://github.com/dbunit"/>
41+
</breadcrumbs>
42+
43+
<menu name="Overview">
44+
<item name="Introduction" href="index.html" />
45+
<item name="Goals" href="plugin-info.html" />
46+
<item name="Usage" href="usage.html" />
47+
<item name="FAQ" href="faq.html" />
48+
<item name="Changes" href="/changes.html" />
49+
</menu>
50+
<menu name="Examples">
51+
<item name="Clean insert" href="examples/clean-insert.html" />
52+
<item name="Composite dataset" href="examples/clean-insert-composite-dataset.html"/>
53+
<item name="Export full database" href="examples/export-full.html" />
54+
<item name="Export with custom query" href="examples/export-custom-query.html" />
55+
<item name="Export DTD schema" href="examples/export-dtd.html" />
56+
<item name="settings" href="examples/settings.html" />
57+
</menu>
58+
<menu name="Developing DbUnit Maven Plugin">
59+
<!--
60+
TODO create these similar to dbUnit Extension site
61+
<item name="Building" href="/building.html"/>
62+
<item name="Developers Guide" href="/devguide.html"/>
63+
<item name="Integration Tests" href="/integrationtests.html"/>
64+
-->
65+
<item name="Releasing" href="/releasing.html"/>
66+
</menu>
67+
<menu ref="reports"/>
68+
</body>
69+
</site>

src/test/data/sample-data.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<dataset>
3-
<table name='person'>
4-
<column>id</column>
5-
<column>first_name</column>
6-
<column>last_name</column>
7-
<row>
8-
<value>1</value>
9-
<value>Brian</value>
10-
<value>Topping</value>
11-
</row>
12-
<row>
13-
<value>2</value>
14-
<value>Rick</value>
15-
<value>Hamnett</value>
16-
</row>
17-
</table>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<dataset>
3+
<table name='person'>
4+
<column>id</column>
5+
<column>first_name</column>
6+
<column>last_name</column>
7+
<row>
8+
<value>1</value>
9+
<value>Brian</value>
10+
<value>Topping</value>
11+
</row>
12+
<row>
13+
<value>2</value>
14+
<value>Rick</value>
15+
<value>Hamnett</value>
16+
</row>
17+
</table>
1818
</dataset>

0 commit comments

Comments
 (0)