-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
115 lines (106 loc) · 4.18 KB
/
pom.xml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<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.sample</groupId>
<artifactId>ear-sample</artifactId>
<version>1.x-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Sample EAR Project</name>
<modules>
<module>war1</module>
<module>war2</module>
<module>ear1</module>
</modules>
<parent>
<groupId>com.flowlogix</groupId>
<artifactId>payara-pom</artifactId>
<version>48</version>
</parent>
<properties>
<!-- Override target java release -->
<!-- <maven.compiler.release>23</maven.compiler.release> -->
<flowlogix.depchain.version>49</flowlogix.depchain.version>
<arquillian.payara.version>3.1</arquillian.payara.version>
<checkstyle.supressionsLocation>${maven.multiModuleProjectDirectory}/src/checkstyle/suppressions.xml</checkstyle.supressionsLocation>
<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>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakarta.ee.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.flowlogix.depchain</groupId>
<artifactId>integration-test</artifactId>
<version>${flowlogix.depchain.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>arquillian-payara-server-remote</artifactId>
<version>${arquillian.payara.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
<version>4.0.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.flowlogix</groupId>
<artifactId>flowlogix-jee</artifactId>
<version>9.0.7</version>
</dependency>
<dependency>
<groupId>org.omnifaces</groupId>
<artifactId>omnifaces</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.flowlogix</groupId>
<artifactId>flowlogix-bom</artifactId>
<version>9.0.7</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<packagingExcludes>
%regex[WEB-INF/lib/(?!omnifaces|flowlogix-jee).*.jar]
</packagingExcludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<packagingExcludes>org.omnifaces-omnifaces-*.jar,com.flowlogix-flowlogix-jee-*.jar</packagingExcludes>
</configuration>
</plugin>
</plugins>
</build>
</project>