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>
|
2022-02-07 04:19:47 +00:00
|
|
|
<version>2.5.9</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>
|
|
|
|
|
<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>
|
2022-01-13 13:04:00 +00:00
|
|
|
<log4j2.version>2.17.1</log4j2.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>
|
|
|
|
|
<version>3.1.2</version>
|
|
|
|
|
</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>
|
|
|
|
|
<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
|
|
|
|