Skip to content

Commit

Permalink
Resolved all Java vulnerabilities.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenstott committed Sep 24, 2024
1 parent 5fa4ab7 commit 5b0df5c
Showing 1 changed file with 50 additions and 28 deletions.
78 changes: 50 additions & 28 deletions calcite-rs-jni/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<scope>system</scope>
<systemPath>${project.basedir}/jars/jconn4.jar</systemPath>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
Expand Down Expand Up @@ -87,7 +92,8 @@
<artifactId>calcite-csv</artifactId>
<version>${calcite.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/calcite/example/csv/build/libs/calcite-csv-${calcite.version}.jar</systemPath>
<systemPath>${project.basedir}/calcite/example/csv/build/libs/calcite-csv-${calcite.version}.jar
</systemPath>
</dependency>
<dependency>
<groupId>org.apache.calcite</groupId>
Expand Down Expand Up @@ -130,7 +136,8 @@
<artifactId>calcite-mongodb</artifactId>
<version>${calcite.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/calcite/mongodb/build/libs/calcite-mongodb-${calcite.version}.jar</systemPath>
<systemPath>${project.basedir}/calcite/mongodb/build/libs/calcite-mongodb-${calcite.version}.jar
</systemPath>
</dependency>
<dependency>
<groupId>org.apache.calcite</groupId>
Expand Down Expand Up @@ -372,7 +379,7 @@
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>4.1.3</version>
<version>5.0.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -423,7 +430,7 @@
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>3.1.2</version>
<version>4.0.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
Expand Down Expand Up @@ -461,6 +468,21 @@
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.seancfoley</groupId>
<artifactId>ipaddress</artifactId>
<version>5.5.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.5.8</version>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.82</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-bom</artifactId>
Expand All @@ -486,30 +508,30 @@
</extension>
</extensions>
<plugins>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-assembly-plugin</artifactId>-->
<!-- <version>3.3.0</version>-->
<!-- <configuration>-->
<!-- <descriptorRefs>-->
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>-->
<!-- </descriptorRefs>-->
<!-- <archive>-->
<!-- <manifest>-->
<!-- <mainClass>com.kenstott.Main</mainClass>-->
<!-- </manifest>-->
<!-- </archive>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>make-assembly</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>single</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-assembly-plugin</artifactId>-->
<!-- <version>3.3.0</version>-->
<!-- <configuration>-->
<!-- <descriptorRefs>-->
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>-->
<!-- </descriptorRefs>-->
<!-- <archive>-->
<!-- <manifest>-->
<!-- <mainClass>com.kenstott.Main</mainClass>-->
<!-- </manifest>-->
<!-- </archive>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>make-assembly</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>single</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 5b0df5c

Please sign in to comment.