Skip to content

Commit 830f6e6

Browse files
authored
Merge pull request #61 from mbarre/master
fix #60 Upgrade to latest schemacrawler runtime > 15.04.01 ->16.9.4
2 parents f663cf4 + 9e8217d commit 830f6e6

File tree

6 files changed

+145
-160
lines changed

6 files changed

+145
-160
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.project
44
.classpath
55
.settings/
6+
.idea

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: java
22
jdk:
3-
- oraclejdk8
3+
- openjdk8
44
install: mvn install
55
script:
66
- mvn test

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.github.adriens</groupId>
55
<artifactId>schemacrawler-additional-command-csv</artifactId>
6-
<version>1.5-SNAPSHOT</version>
6+
<version>1.6-SNAPSHOT</version>
77
<name>SchemaCrawler csv lint exporter</name>
88
<description>Schemacrawler command extension that produces a csv
99
of the lints, hence making it integrable wth other reporting tools.
@@ -23,26 +23,26 @@
2323
<developerConnection>scm:git:git@github.com:adriens/schemacrawler-additional-command-lints-as-csv.git</developerConnection>
2424
<url>https://github.com/adriens/schemacrawler-additional-command-lints-as-csv/issues</url>
2525
</scm>
26-
26+
2727
<properties>
2828
<!-- Core properties -->
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30-
30+
3131
<!-- Core schemacrawler -->
32-
<schemacrawler.version>15.04.01</schemacrawler.version>
33-
32+
<schemacrawler.version>16.9.4</schemacrawler.version>
33+
3434
<!-- test dependencies versions -->
3535
<junit.version>4.12</junit.version>
3636
<hsqldb.version>2.4.1</hsqldb.version>
37-
37+
3838
<!-- Lint specific dependencies -->
3939
<commons-csv.version>1.6</commons-csv.version>
40-
40+
4141
<!-- Compile properties -->
4242
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
4343
<maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
4444
</properties>
45-
45+
4646
<dependencies>
4747
<dependency>
4848
<groupId>junit</groupId>
@@ -72,7 +72,7 @@
7272
<version>${commons-csv.version}</version>
7373
</dependency>
7474
</dependencies>
75-
75+
7676
<build>
7777
<plugins>
7878
<plugin>

0 commit comments

Comments
 (0)