Fix exceptions thrown as reflections scan non java classes (#12680)

This commit is contained in:
Suresh Srinivas 2023-07-31 17:33:47 -07:00 committed by GitHub
parent d968304853
commit 19e223eabd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 3 deletions

View File

@ -22,7 +22,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
<dropwizard.swagger.version>2.1.4-1</dropwizard.swagger.version>
<dropwizard.swagger.version>2.1.6-1</dropwizard.swagger.version>
</properties>
<artifactId>common</artifactId>

View File

@ -11,7 +11,7 @@
<artifactId>openmetadata-service</artifactId>
<properties>
<dropwizard.swagger.version>2.0.12-1</dropwizard.swagger.version>
<dropwizard.swagger.version>2.1.6-1</dropwizard.swagger.version>
<sonar.junit.reportPaths>${project.basedir}/target/surefire-reports</sonar.junit.reportPaths>
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.tests>${project.basedir}/src/test/java</sonar.tests>
@ -480,6 +480,17 @@
<artifactId>woodstox-core</artifactId>
<version>${woodstox.version}</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.2</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.6.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
<profiles>

View File

@ -14,7 +14,7 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<dropwizard.swagger.version>2.0.12-1</dropwizard.swagger.version>
<dropwizard.swagger.version>2.1.6-1</dropwizard.swagger.version>
</properties>
<dependencies>