-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
51 lines (45 loc) · 2.07 KB
/
pom.xml
File metadata and controls
51 lines (45 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.flowlogix.plugins</groupId>
<artifactId>container-deploy-plugin-root</artifactId>
<packaging>pom</packaging>
<version>x-SNAPSHOT</version>
<name>Jakarta EE Container Deploy Plugin Root</name>
<description>Dev mode, and deploy utilities for Payara and GlassFish Server
Includes Live Reload functionality for Jakarta Faces applications</description>
<parent>
<groupId>com.flowlogix</groupId>
<artifactId>infra-pom</artifactId>
<version>90</version>
</parent>
<modules>
<module>plugin</module>
<module>live-reload</module>
</modules>
<properties>
<!-- Override target java release -->
<maven.compiler.release>17</maven.compiler.release>
<flowlogix.depchain.version>101</flowlogix.depchain.version>
<checkstyle.suppressionsLocation>${maven.multiModuleProjectDirectory}/src/checkstyle/suppressions.xml</checkstyle.suppressionsLocation>
<checkstyle.headerLocation>${maven.multiModuleProjectDirectory}/src/checkstyle/apache-header.txt</checkstyle.headerLocation>
<!-- Turn off maven build cache -->
<!-- <maven.build.cache.enabled>false</maven.build.cache.enabled> -->
<!-- Turn on console logging for tests -->
<test.redirect.to.file>false</test.redirect.to.file>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.flowlogix.depchain</groupId>
<artifactId>unit-test</artifactId>
<version>${flowlogix.depchain.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>