-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
123 lines (110 loc) · 4.26 KB
/
pom.xml
File metadata and controls
123 lines (110 loc) · 4.26 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
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
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>app.packed</groupId>
<artifactId>packed-root-pom</artifactId>
<version>0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>packed-modules-pom</artifactId>
<packaging>pom</packaging>
<name>Packed-Modules-Pom</name>
<description>Packed Modules POM</description>
<!-- ==================================================================== -->
<modules>
<module>packed</module>
<module>packed-micro</module>
<module>packed-module-tests</module>
<module>packed-incubator</module>
</modules>
<!-- ==================================================================== -->
<properties>
<!-- Locate the root directory of the multi-module build -->
<root.dir>${project.basedir}/..</root.dir>
<!-- Test Dependencies Versions -->
<version.test.assertj>3.27.6</version.test.assertj>
<version.test.junit>6.0.2</version.test.junit>
<version.test.jmh>1.37</version.test.jmh>
<!-- Pluging Versions -->
<version.plugin.jacoco>0.8.12</version.plugin.jacoco>
</properties>
<!-- ==================================================================== -->
<dependencyManagement>
<dependencies>
<!-- Packed -->
<dependency>
<groupId>app.packed</groupId>
<artifactId>packed</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>app.packed</groupId>
<artifactId>packed-devtools</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${version.test.junit}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.test.assertj}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${version.test.jmh}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${version.test.jmh}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- ==================================================================== -->
<build>
<!-- <directory>${project.basedir}/target.tmp</directory> -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xlint:deprecation</compilerArgument>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<compilerArgument>--enable-preview</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--enable-preview</argLine>
</configuration>
<!-- Surefire does not pickup static test classes, unless we have these excludes, see https://github.com/junit-team/junit5/issues/1377
<configuration>
<excludes>
<exclude/>
</excludes>
</configuration>
Should be fixed with 2.22.2
-->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>packed.*:*.internals.*:*.test.*:*.examples.*:</excludePackageNames>
<additionalOptions>-tag "apiNote:a:API Note:" -tag "implSpec:a:Implementation Requirements:" -tag "implNote:a:Implementation Note:"</additionalOptions>
<additionalOptions>-Xdoclint:none</additionalOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
</plugins>
</build>
</project>