2019-09-16 11:21:57 +00:00
|
|
|
<?xml version="1.0"?>
|
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
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2023-05-09 02:22:42 +00:00
|
|
|
<version>3.0.6</version>
|
2019-09-16 11:21:57 +00:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
2019-03-18 20:20:32 +00:00
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<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
|
|
|
|
2019-09-16 11:21:57 +00:00
|
|
|
<properties>
|
2023-01-02 12:40:59 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<java.version>17</java.version>
|
2019-09-16 11:21:57 +00:00
|
|
|
<javadoc.disabled>true</javadoc.disabled>
|
|
|
|
|
<deploy.disabled>true</deploy.disabled>
|
|
|
|
|
<source.disabled>true</source.disabled>
|
|
|
|
|
<project.groupId>com.appsmith</project.groupId>
|
|
|
|
|
<project.version>1.0-SNAPSHOT</project.version>
|
2019-10-16 11:27:02 +00:00
|
|
|
<!-- By default skip the dockerization step. Only activate if necessary -->
|
|
|
|
|
<skipDockerBuild>true</skipDockerBuild>
|
2023-05-09 02:22:42 +00:00
|
|
|
<spring-boot.version>3.0.6</spring-boot.version>
|
2022-09-19 02:34:30 +00:00
|
|
|
<h2.version>2.1.210</h2.version>
|
2022-09-29 03:24:07 +00:00
|
|
|
<testcontainers.version>1.17.3</testcontainers.version>
|
|
|
|
|
<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-01-02 12:40:59 +00:00
|
|
|
<reactor-test.version>3.5.1</reactor-test.version>
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
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>
|
2022-06-15 06:34:28 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2022-09-29 03:24:07 +00:00
|
|
|
<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>
|
2022-06-15 06:34:28 +00:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2022-09-29 03:24:07 +00:00
|
|
|
<configuration>
|
|
|
|
|
<!-- 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>
|
|
|
|
|
</configuration>
|
|
|
|
|
</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>
|
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-09-16 11:21:57 +00:00
|
|
|
<modules>
|
2022-08-22 17:57:07 +00:00
|
|
|
<module>reactive-caching</module>
|
2019-09-16 11:21:57 +00:00
|
|
|
<module>appsmith-interfaces</module>
|
|
|
|
|
<module>appsmith-plugins</module>
|
|
|
|
|
<module>appsmith-server</module>
|
2021-08-25 16:00:29 +00:00
|
|
|
<module>appsmith-git</module>
|
2019-09-16 11:21:57 +00:00
|
|
|
</modules>
|
2019-03-18 20:20:32 +00:00
|
|
|
|
|
|
|
|
</project>
|
2019-09-16 11:21:57 +00:00
|
|
|
|