-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
192 lines (186 loc) · 7.9 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.doddle</groupId>
<artifactId>application</artifactId>
<version>1.0-SNAPSHOT</version>
<url>https://github.com/jamhall/doddle</url>
<modules>
<module>modules/common</module>
<module>modules/core</module>
<module>modules/storage/common</module>
<module>modules/storage/sql</module>
<module>modules/web</module>
</modules>
<packaging>pom</packaging>
<description>Simple, efficient background processing for Java</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>15</maven.compiler.target>
<maven.compiler.source>15</maven.compiler.source>
<!-- Maven plugins dependency versions -->
<license-maven-plugin.version>3.0</license-maven-plugin.version>
<!-- End maven plugins dependency versions -->
<!-- Dependency versions -->
<commons-lang.version>3.12.0</commons-lang.version>
<jackson.version>2.13.2</jackson.version>
<junit-jupiter-api.version>5.8.2</junit-jupiter-api.version>
<junit-jupiter-engine.version>5.8.2</junit-jupiter-engine.version>
<junit-jupiter-params.version>5.8.2</junit-jupiter-params.version>
<log4j.version>2.17.1</log4j.version>
<mockito.version>1.10.19</mockito.version>
<findbugs.version>3.0.2</findbugs.version>
<jetty.version>9.4.35.v20201120</jetty.version>
<jakarta-servlet-api.version>5.0.0</jakarta-servlet-api.version>
<vertx-web.version>4.2.6</vertx-web.version>
<!-- End dependency versions -->
</properties>
<developers>
<developer>
<id>jamhall</id>
<name>Jamie Hall</name>
<email>[email protected]</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<dependencies>
<!-- Common dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-engine.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-params.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>15</source>
<target>15</target>
</configuration>
</plugin>
<plugin>
<!--
Plugin to check that all source files have the appropriate open source license header.
This will fail the build if any source files don't have the open source license header.
To actually apply the header to new source files, run: mvn license:format
-->
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<header>etc/header.txt</header>
<excludes>
<exclude>src/test/resources/**</exclude>
<exclude>modules/core/src/main/java/dev/doddle/core/support/CronExpression.java</exclude>
<exclude>modules/core/src/main/java/dev/doddle/core/support/CronFieldParser.java</exclude>
<exclude>modules/core/src/main/java/dev/doddle/core/support/CronFieldType.java</exclude>
<exclude>**/LICENSE.txt</exclude>
<exclude>etc/</exclude>
<exclude>docs/</exclude>
<exclude>examples/</exclude>
<exclude>settings.xml</exclude>
<exclude>.github/workflows/maven.yml</exclude>
<exclude>.editorconfig</exclude>
<exclude>*.env</exclude>
<exclude>*.gitkeep</exclude>
<exclude>*.dbml</exclude>
<exclude>pom.xml</exclude>
</excludes>
<strictCheck>true</strictCheck>
<mapping>
<g4>JAVADOC_STYLE</g4>
</mapping>
<headerDefinitions>
<headerDefinition>etc/headers.xml</headerDefinition>
</headerDefinitions>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
<!--
Enables analysis which takes more memory but finds more bugs.
If you run out of memory, changes the value of the effort element
to 'low'.
-->
<effort>Max</effort>
<!-- Reports all bugs (other values are medium and max) -->
<threshold>Low</threshold>
<!-- Produces XML report -->
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>