2023-07-06 19:13:11 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-02-14 06:32:34 +00:00
|
|
|
<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">
|
2019-03-18 20:20:32 +00:00
|
|
|
|
2023-07-06 19:13:11 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2024-10-01 16:42:56 +00:00
|
|
|
<version>3.3.3</version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<relativePath/>
|
|
|
|
|
<!-- lookup parent from repository -->
|
2019-09-16 11:21:57 +00:00
|
|
|
</parent>
|
|
|
|
|
<groupId>com.appsmith</groupId>
|
|
|
|
|
<artifactId>integrated</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>Integrated Appsmith</name>
|
2019-09-04 09:24:38 +00:00
|
|
|
|
2023-07-06 19:13:11 +00:00
|
|
|
<modules>
|
|
|
|
|
<module>reactive-caching</module>
|
|
|
|
|
<module>appsmith-interfaces</module>
|
|
|
|
|
<module>appsmith-plugins</module>
|
|
|
|
|
<module>appsmith-server</module>
|
|
|
|
|
<module>appsmith-git</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<properties>
|
|
|
|
|
<deploy.disabled>true</deploy.disabled>
|
2024-04-16 16:04:24 +00:00
|
|
|
<jackson-bom.version>2.17.0</jackson-bom.version>
|
|
|
|
|
<jackson.version>2.17.0</jackson.version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<java.version>17</java.version>
|
|
|
|
|
<javadoc.disabled>true</javadoc.disabled>
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2024-02-28 09:19:41 +00:00
|
|
|
<mockito.version>4.4.0</mockito.version>
|
2022-09-30 06:19:25 +00:00
|
|
|
<mockwebserver.version>5.0.0-alpha.2</mockwebserver.version>
|
|
|
|
|
<okhttp3.version>4.10.0</okhttp3.version>
|
2023-09-07 03:18:45 +00:00
|
|
|
<org.pf4j.version>3.10.0</org.pf4j.version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.groupId>com.appsmith</project.groupId>
|
|
|
|
|
<project.version>1.0-SNAPSHOT</project.version>
|
2024-06-27 13:48:40 +00:00
|
|
|
<reactor-test.version>3.5.1</reactor-test.version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<!-- By default skip the dockerization step. Only activate if necessary -->
|
|
|
|
|
<skipDockerBuild>true</skipDockerBuild>
|
2024-12-24 20:38:49 +00:00
|
|
|
<skipITs>${skipTests}</skipITs>
|
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
|
<skipUTs>${skipTests}</skipUTs>
|
2023-06-08 07:18:38 +00:00
|
|
|
<!-- We're forcing this version temporarily to fix CVE-2022-1471-->
|
|
|
|
|
<snakeyaml.version>2.0</snakeyaml.version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<source.disabled>true</source.disabled>
|
|
|
|
|
<spotless.version>2.36.0</spotless.version>
|
2024-10-01 16:42:56 +00:00
|
|
|
<testcontainers.version>1.20.1</testcontainers.version>
|
2019-09-16 11:21:57 +00:00
|
|
|
</properties>
|
2019-03-30 06:31:24 +00:00
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<build>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2019-10-16 11:27:02 +00:00
|
|
|
|
2020-07-10 10:28:04 +00:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
|
<version>2.0.0</version>
|
|
|
|
|
</plugin>
|
2021-04-22 03:30:09 +00:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2023-01-02 12:40:59 +00:00
|
|
|
<version>3.4.0</version>
|
2021-04-22 03:30:09 +00:00
|
|
|
</plugin>
|
2024-12-24 20:38:49 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-test-source</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>add-test-source</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>generate-test-sources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sources>
|
|
|
|
|
<source>src/test/java</source>
|
|
|
|
|
<!-- Default test directory -->
|
|
|
|
|
<source>src/test/it</source>
|
|
|
|
|
<!-- Additional test directory -->
|
|
|
|
|
<source>src/test/utils</source>
|
|
|
|
|
<!-- Another additional directory -->
|
|
|
|
|
</sources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2022-06-15 06:34:28 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2024-02-28 09:19:41 +00:00
|
|
|
<version>3.0.0-M5</version>
|
2023-07-06 19:13:11 +00:00
|
|
|
<configuration>
|
2023-11-23 11:14:57 +00:00
|
|
|
<printSummary>true</printSummary>
|
2023-07-06 19:13:11 +00:00
|
|
|
<!-- Allow JUnit to access the test classes -->
|
|
|
|
|
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED
|
|
|
|
|
--add-opens java.base/java.time=ALL-UNNAMED
|
|
|
|
|
--add-opens java.base/java.util=ALL-UNNAMED</argLine>
|
2024-12-24 20:38:49 +00:00
|
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
|
|
|
<skipTests>${skipUTs}</skipTests>
|
|
|
|
|
</configuration>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
<version>5.6.2</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
|
<artifactId>junit-platform-commons</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<printSummary>true</printSummary>
|
|
|
|
|
<!-- Allow JUnit to access the test classes -->
|
|
|
|
|
<argLine>-ea
|
|
|
|
|
--add-opens java.base/java.lang=ALL-UNNAMED
|
|
|
|
|
--add-opens java.base/java.time=ALL-UNNAMED
|
|
|
|
|
--add-opens java.base/java.util=ALL-UNNAMED</argLine>
|
|
|
|
|
<systemPropertyVariables>
|
|
|
|
|
<pf4j.pluginsDir>../dist/plugins</pf4j.pluginsDir>
|
|
|
|
|
<!-- Specify plugin directory -->
|
|
|
|
|
</systemPropertyVariables>
|
|
|
|
|
<testSourceDirectory>src/test/it</testSourceDirectory>
|
|
|
|
|
<skipITs>${skipITs}</skipITs>
|
|
|
|
|
<!-- Property for skipping integration tests -->
|
2023-07-06 19:13:11 +00:00
|
|
|
</configuration>
|
2024-02-28 09:19:41 +00:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
<version>5.6.2</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
|
<artifactId>junit-platform-commons</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2022-09-29 03:24:07 +00:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default-cli</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>junit:junit</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
<fail>true</fail>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2022-06-15 06:34:28 +00:00
|
|
|
</plugin>
|
2023-07-06 19:13:11 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
|
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
|
|
|
<version>${spotless.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<formats>
|
|
|
|
|
<!-- you can define as many formats as you want, each is independent -->
|
|
|
|
|
<format>
|
|
|
|
|
<!-- define the files to apply to -->
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*.md</include>
|
|
|
|
|
<include>.gitignore</include>
|
2024-11-09 05:51:30 +00:00
|
|
|
<include>**/*.sql</include>
|
2023-07-06 19:13:11 +00:00
|
|
|
</includes>
|
|
|
|
|
<!-- define the steps to apply to those files -->
|
|
|
|
|
<trimTrailingWhitespace/>
|
|
|
|
|
<endWithNewline/>
|
|
|
|
|
<indent>
|
|
|
|
|
<tabs>true</tabs>
|
|
|
|
|
<spacesPerTab>2</spacesPerTab>
|
|
|
|
|
</indent>
|
|
|
|
|
</format>
|
|
|
|
|
</formats>
|
|
|
|
|
<!-- define a language-specific format -->
|
|
|
|
|
<java>
|
|
|
|
|
<!-- Cleanthat will refactor your code, but it may break your style: apply it before your formatter -->
|
|
|
|
|
<cleanthat/>
|
|
|
|
|
<!-- apply a specific flavor of google-java-format and reflow long strings -->
|
|
|
|
|
<palantirJavaFormat/>
|
|
|
|
|
<importOrder>
|
|
|
|
|
<order>,javax|java,\#</order>
|
|
|
|
|
</importOrder>
|
|
|
|
|
<removeUnusedImports/>
|
|
|
|
|
<formatAnnotations/>
|
|
|
|
|
</java>
|
2024-08-08 03:46:03 +00:00
|
|
|
<json>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/target/**/*.json</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.json</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<prettier>
|
|
|
|
|
<config>
|
|
|
|
|
<tabWidth>2</tabWidth>
|
|
|
|
|
</config>
|
|
|
|
|
</prettier>
|
|
|
|
|
</json>
|
2023-07-06 19:13:11 +00:00
|
|
|
<pom>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>pom.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<sortPom>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<keepBlankLines>true</keepBlankLines>
|
|
|
|
|
<nrOfIndentSpace>4</nrOfIndentSpace>
|
|
|
|
|
<indentBlankLines>false</indentBlankLines>
|
|
|
|
|
<indentSchemaLocation>true</indentSchemaLocation>
|
|
|
|
|
<expandEmptyElements>false</expandEmptyElements>
|
|
|
|
|
<sortProperties>true</sortProperties>
|
|
|
|
|
</sortPom>
|
|
|
|
|
</pom>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>apply</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2020-07-10 10:28:04 +00:00
|
|
|
</plugins>
|
2019-10-16 11:27:02 +00:00
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
</build>
|
2019-03-31 15:52:06 +00:00
|
|
|
|
2019-03-18 20:20:32 +00:00
|
|
|
</project>
|