Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies, and remove mutation tests #717

Merged
merged 1 commit into from
May 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions .github/workflows/mutation-tests.yml

This file was deleted.

2 changes: 1 addition & 1 deletion schemacrawler-dbtest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
<dependency>
<groupId>org.apache.calcite.avatica</groupId>
<artifactId>avatica-core</artifactId>
<version>1.20.0</version>
<version>1.21.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
System Information
========================================================================

generated by SchemaCrawler 16.16.12
generated on 2022-03-21 18:20:41
generated by SchemaCrawler 16.16.14
generated on 2022-05-13 17:59:08
database version Calcite 1.30.0
driver version Calcite JDBC Driver 1.30.0

Expand Down Expand Up @@ -660,6 +660,11 @@ TOPDOWN_OPT [driver property]
not required
value null

TRANSPARENT_RECONNECTION [driver property]

not required
value null

TRUSTSTORE [driver property]

not required
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
System Information
========================================================================

generated by SchemaCrawler 16.16.12
generated on 2022-03-21 18:20:55
generated by SchemaCrawler 16.16.14
generated on 2022-05-13 18:03:27
database version Calcite 1.30.0
driver version Calcite JDBC Driver 1.30.0

Expand Down Expand Up @@ -661,6 +661,11 @@ TOPDOWN_OPT [driver property]
not required
value null

TRANSPARENT_RECONNECTION [driver property]

not required
value null

TRUSTSTORE [driver property]

not required
Expand Down
48 changes: 2 additions & 46 deletions schemacrawler-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.19</version>
<version>5.3.20</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.19</version>
<version>5.3.20</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -424,50 +424,6 @@
<stagingProgressPauseDurationSeconds>10</stagingProgressPauseDurationSeconds>
</configuration>
</plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.7.5</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>0.15</version>
</dependency>
</dependencies>
<configuration>
<targetClasses>
<param>schemacrawler.crawl.*</param>
<param>schemacrawler.filter.*</param>
<param>schemacrawler.schemacrawler.*</param>
<param>schemacrawler.analysis.*</param>
</targetClasses>
<excludedClasses>
<param>schemacrawler.analysis.associations.Inflection</param>
<param>schemacrawler.schemacrawler.SchemaCrawlerException</param>
<param>schemacrawler.schemacrawler.SchemaCrawlerRuntimeException</param>
<param>schemacrawler.schemacrawler.SchemaCrawlerSQLException</param>
</excludedClasses>
<targetTests>
<param>schemacrawler.*</param>
</targetTests>
<avoidCallsTo>
<avoidCallsTo>schemacrawler.SchemaCrawlerLogger</avoidCallsTo>
<avoidCallsTo>java.util.logging</avoidCallsTo>
<avoidCallsTo>org.apache.log4j</avoidCallsTo>
<avoidCallsTo>org.slf4j</avoidCallsTo>
<avoidCallsTo>org.apache.commons.logging</avoidCallsTo>
</avoidCallsTo>
<failWhenNoMutations>false</failWhenNoMutations>
<exportLineCoverage>true</exportLineCoverage>
<timestampedReports>false</timestampedReports>
<outputFormats>
<!-- XML reports are required for aggregation -->
<value>XML</value>
<value>HTML</value>
</outputFormats>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
Expand Down