2019-09-16 11:21:57 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2023-07-06 19:13:11 +00:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-09-16 11:21:57 +00:00
|
|
|
<parent>
|
|
|
|
|
<groupId>com.appsmith</groupId>
|
|
|
|
|
<artifactId>integrated</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>interfaces</artifactId>
|
2019-09-24 12:14:41 +00:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
|
|
|
|
<name>interfaces</name>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2023-01-02 12:40:59 +00:00
|
|
|
<jjwt.version>0.11.5</jjwt.version>
|
2019-09-16 11:21:57 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2023-08-25 09:58:16 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hierynomus</groupId>
|
|
|
|
|
<artifactId>sshj</artifactId>
|
|
|
|
|
<version>0.35.0</version>
|
2024-05-06 12:55:32 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2023-08-25 09:58:16 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2022-09-29 03:24:07 +00:00
|
|
|
<!-- Actual Junit5 implementation. Will transitively include junit-jupiter-api -->
|
2019-09-16 11:21:57 +00:00
|
|
|
<dependency>
|
2022-09-29 03:24:07 +00:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
2019-09-16 11:21:57 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-09-29 03:24:07 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
|
<artifactId>junit-platform-suite-engine</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- For junit5 parameterised test support -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Only required to run junit5 test from IDE -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
|
<artifactId>junit-platform-launcher</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-09-16 11:21:57 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.pf4j</groupId>
|
|
|
|
|
<artifactId>pf4j</artifactId>
|
2023-09-07 03:18:45 +00:00
|
|
|
<version>${org.pf4j.version}</version>
|
2023-01-02 12:40:59 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-mongodb</artifactId>
|
2024-10-01 16:42:56 +00:00
|
|
|
<scope>provided</scope>
|
2019-09-16 11:21:57 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2019-09-17 12:18:23 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
2023-10-19 07:17:19 +00:00
|
|
|
<version>20231013</version>
|
2019-09-17 12:18:23 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2024-06-12 07:08:25 +00:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-crypto</artifactId>
|
|
|
|
|
</dependency>
|
2019-09-17 12:18:23 +00:00
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2019-09-30 18:17:35 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2024-04-16 16:04:24 +00:00
|
|
|
<version>${jackson-bom.version}</version>
|
2019-09-30 18:17:35 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2023-01-02 12:40:59 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
2024-04-16 16:04:24 +00:00
|
|
|
<version>${jackson-bom.version}</version>
|
2023-01-02 12:40:59 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2020-04-03 14:27:10 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-18 13:03:27 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-text</artifactId>
|
2022-10-14 14:06:16 +00:00
|
|
|
<version>1.10.0</version>
|
2021-02-18 13:03:27 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
|
<artifactId>commons-validator</artifactId>
|
|
|
|
|
<version>1.7</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2024-11-15 07:11:06 +00:00
|
|
|
<version>2.17.0</version>
|
2021-02-18 13:03:27 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-03-05 11:39:29 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
2021-03-11 08:40:00 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
|
<artifactId>json-smart</artifactId>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2021-10-20 09:47:34 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
|
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
2023-09-19 10:30:07 +00:00
|
|
|
<version>6.6.1.202309021850-r</version>
|
2021-10-20 09:47:34 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2021-09-19 15:03:47 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
</dependency>
|
2021-09-21 12:05:29 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-webflux</artifactId>
|
|
|
|
|
</dependency>
|
2022-07-21 10:40:36 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
|
|
|
<artifactId>reactor-netty-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2022-09-01 05:46:45 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
|
|
|
<artifactId>reactor-netty-http</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
|
<artifactId>reactor-core</artifactId>
|
|
|
|
|
</exclusion>
|
fix: Fix LinkageError with macOS DNSResolver class (#16581)
On macOS, when running a MySQL query, we see the following error:
```
java.lang.ClassCastException: class io.netty.channel.kqueue.KQueueEventLoopGroup cannot be cast to class io.netty.channel.EventLoopGroup
```
This is because of a `LinkageError`, caused because these classes exist both in the parent `server` module classpath, as well as in this plugin's classpath separately. To fix this, we removed this dependency from the server module.
But then, this caused a problem with how the `DNSResolver` class was being, well, resolved by the application class loader, vs the plugin class loader. This is a macOS specific problem, and doesn't affect other operating systems.
For this, we add just this package as a dependency to the MySQL plugin.
2022-09-06 16:30:53 +00:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-resolver-dns-native-macos</artifactId>
|
|
|
|
|
</exclusion>
|
2022-09-01 05:46:45 +00:00
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2022-09-09 15:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
2023-01-02 12:40:59 +00:00
|
|
|
<version>${jjwt.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
2023-01-02 12:40:59 +00:00
|
|
|
<version>${jjwt.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
2023-07-06 19:13:11 +00:00
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
<!-- or jjwt-gson if Gson is preferred -->
|
2023-01-02 12:40:59 +00:00
|
|
|
<version>${jjwt.version}</version>
|
2024-04-16 16:04:24 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-09-09 15:59:47 +00:00
|
|
|
</dependency>
|
2022-09-01 05:46:45 +00:00
|
|
|
|
2022-09-09 15:59:47 +00:00
|
|
|
<!--Test dependencies-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
|
<artifactId>reactor-test</artifactId>
|
2023-01-02 12:40:59 +00:00
|
|
|
<version>${reactor-test.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-09-29 03:24:07 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/mockwebserver3 -->
|
2022-09-09 15:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
2022-09-29 03:24:07 +00:00
|
|
|
<artifactId>mockwebserver3</artifactId>
|
2022-09-30 06:19:25 +00:00
|
|
|
<version>${mockwebserver.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
<scope>test</scope>
|
2022-09-30 06:19:25 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>${okhttp3.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2022-09-29 03:24:07 +00:00
|
|
|
<version>${mockito.version}</version>
|
2022-09-09 15:59:47 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2023-02-07 08:56:18 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
|
<artifactId>reactor-core-micrometer</artifactId>
|
|
|
|
|
</dependency>
|
2024-03-04 09:08:27 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
2024-05-07 16:24:48 +00:00
|
|
|
<version>1.78</version>
|
2024-03-04 09:08:27 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2024-04-09 15:46:10 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
|
<artifactId>micrometer-tracing</artifactId>
|
|
|
|
|
</dependency>
|
2024-03-04 09:08:27 +00:00
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
2022-09-19 02:34:30 +00:00
|
|
|
</project>
|