Skip to content

Commit e3510d5

Browse files
committed
v16.9.3
1 parent e31baa8 commit e3510d5

File tree

6 files changed

+58
-19
lines changed

6 files changed

+58
-19
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[*]
2+
charset = utf-8
3+
end_of_line = crlf
4+
insert_final_newline = true
5+
max_line_length = 80
6+
trim_trailing_whitespace = true
7+
indent_style = space
8+
indent_size = 2
9+
10+
[*.py]
11+
indent_size = 4
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.sh]
17+
end_of_line = lf

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
*.launch text
1111
*.prefs text
1212

13-
# Declare files that will always have CRLF line endings on checkout.
13+
# Declare files that will always have fixed line endings on checkout.
1414
*.sln text eol=crlf
15+
*.sh text eol=lf
1516

1617
# Denote all files that are truly binary and should not be modified.
1718
*.png binary

.gitignore

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,37 @@
1+
# Eclipse
2+
.project
3+
.classpath
4+
.settings/
5+
.loadpath
6+
.recommenders
7+
.externalToolBuilders/
8+
*.launch
9+
.springBeans
10+
.recommenders/
11+
.apt_generated/
12+
bin/
13+
14+
# IntelliJ IDEA
15+
.idea/
16+
**/*.iml
17+
118
*.patch
219
.clover
320
.svn
4-
.idea/
5-
**/*.iml
6-
.settings/com.atlassian.clover.eclipse.core.prefs
21+
*.png
22+
23+
target/
24+
workspace/
25+
26+
pom.xml.tag
27+
pom.xml.releaseBackup
28+
pom.xml.versionsBackup
29+
pom.xml.next
30+
release.properties
31+
dependency-reduced-pom.xml
32+
buildNumber.properties
33+
__init__.py
34+
735
/schemacrawler-db2/*.jar
836
/schemacrawler-distrib/*.bnd
937
/schemacrawler-distrib/*.jar
@@ -19,22 +47,15 @@
1947
/schemacrawler/gpl-3.0.txt
2048
/schemacrawler/lgpl-3.0.txt
2149
/schemacrawler/src/assembly/schemacrawler.pom.asc
22-
target/
23-
bin/
24-
workspace/
25-
pom.xml.tag
26-
pom.xml.releaseBackup
27-
pom.xml.versionsBackup
28-
pom.xml.next
29-
release.properties
30-
dependency-reduced-pom.xml
31-
buildNumber.properties
50+
/schemacrawler-examplecode/src/main/java/Issue166.java
51+
/schemacrawler-examplecode/src/main/java/Issue167.java
52+
3253
/schemacrawler-examplecode/derby.log
3354
**/hsqldb.schemacrawler.lck
3455
**/hsqldb.schemacrawler.lobs
3556
**/hsqldb.schemacrawler.log
3657
**/hsqldb.schemacrawler.properties
3758
**/hsqldb.schemacrawler.script
3859
**/derby.log
39-
/schemacrawler-examplecode/src/main/java/Issue166.java
40-
/schemacrawler-examplecode/src/main/java/Issue167.java
60+
61+
/schemacrawler-scripting/serialize.*

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.9.2</version>
9+
<version>16.9.3</version>
1010
</parent>
1111
<artifactId>schemacrawler-database-plugins-parent</artifactId>
1212
<packaging>pom</packaging>

schemacrawler-sapiq/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.9.2</version>
10+
<version>16.9.3</version>
1111
</parent>
1212
<artifactId>schemacrawler-sapiq</artifactId>
1313
<packaging>jar</packaging>

schemacrawler-timesten/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.9.2</version>
9+
<version>16.9.3</version>
1010
</parent>
1111
<artifactId>schemacrawler-timesten</artifactId>
1212
<packaging>jar</packaging>

0 commit comments

Comments
 (0)