-
Notifications
You must be signed in to change notification settings - Fork 519
/
pom.xml
221 lines (214 loc) · 9.36 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<developers>
<developer>
<id>lukas</id>
<name>Lukas Krecan</name>
<email>[email protected]</email>
</developer>
</developers>
<groupId>net.javacrumbs.shedlock</groupId>
<artifactId>shedlock-parent</artifactId>
<packaging>pom</packaging>
<version>6.0.2-SNAPSHOT</version>
<modules>
<module>shedlock-bom</module>
<module>shedlock-core</module>
<module>cdi/shedlock-cdi</module>
<module>cdi/test/quarkus-test</module>
<module>micronaut/shedlock-micronaut4</module>
<module>micronaut/test/micronaut4-jdbc</module>
<module>micronaut/test/micronaut4-jdbc-template</module>
<module>spring/shedlock-spring</module>
<module>spring/test/shedlock-springboot-old-test</module>
<module>spring/test/shedlock-springboot-test</module>
<module>spring/test/shedlock-springboot-future-test</module>
<module>spring/test/shedlock-springboot-sleuth-test</module>
<module>spring/test/shedlock-springboot-kotlin-test</module>
<module>spring/test/shedlock-testng-test</module>
<module>shedlock-test-support</module>
<module>providers/etcd/shedlock-provider-etcd-jetcd</module>
<module>providers/hazelcast/shedlock-provider-hazelcast4</module>
<module>providers/jdbc/shedlock-test-support-jdbc</module>
<module>providers/jdbc/shedlock-provider-jdbc-internal</module>
<module>providers/jdbc/shedlock-provider-jdbc</module>
<module>providers/jdbc/shedlock-provider-jooq</module>
<module>providers/jdbc/shedlock-provider-jdbc-template</module>
<module>providers/jdbc/shedlock-provider-jdbc-micronaut</module>
<module>providers/r2dbc/shedlock-provider-r2dbc</module>
<module>providers/mongo/shedlock-provider-mongo</module>
<module>providers/mongo/shedlock-provider-mongo-reactivestreams</module>
<module>providers/elasticsearch/shedlock-provider-elasticsearch8</module>
<module>providers/opensearch/shedlock-provider-opensearch</module>
<module>providers/couchbase/shedlock-provider-couchbase-javaclient3</module>
<module>providers/zookeeper/shedlock-provider-zookeeper-curator</module>
<module>providers/redis/shedlock-provider-redis-jedis4</module>
<module>providers/redis/shedlock-provider-redis-spring</module>
<module>providers/dynamodb/shedlock-provider-dynamodb2</module>
<module>providers/cassandra/shedlock-provider-cassandra</module>
<module>providers/consul/shedlock-provider-consul</module>
<module>providers/arangodb/shedlock-provider-arangodb</module>
<module>providers/ignite/shedlock-provider-ignite</module>
<module>providers/inmemory/shedlock-provider-inmemory</module>
<module>providers/memcached/shedlock-provider-memcached-spy</module>
<module>providers/datastore/shedlock-provider-datastore</module>
<module>providers/spanner/shedlock-provider-spanner</module>
<module>providers/neo4j/shedlock-provider-neo4j</module>
</modules>
<properties>
<spring.version>6.2.0</spring.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>17</jdk.version>
<spring-boot-current.version>3.4.0</spring-boot-current.version>
<junit.ver>5.11.3</junit.ver>
<test-containers.ver>1.20.4</test-containers.ver>
<kotlin.ver>2.0.21</kotlin.ver>
<micronaut4.version>4.7.0</micronaut4.version>
<micronaut4.validation.version>4.8.0</micronaut4.validation.version>
<micronaut4-data.version>4.8.1</micronaut4-data.version>
<logback.ver>1.5.12</logback.ver>
<awaitility.ver>4.2.2</awaitility.ver>
<assertj.ver>3.26.3</assertj.ver>
<mockito.ver>5.14.2</mockito.ver>
<slf4j.ver>2.0.16</slf4j.ver>
<fork.count>1</fork.count>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.43.0</version>
<configuration>
<java>
<palantirJavaFormat><version>2.38.0</version></palantirJavaFormat>
<removeUnusedImports />
</java>
<kotlin>
<ktfmt>
<maxWidth>120</maxWidth>
<style>KOTLINLANG</style>
</ktfmt>
</kotlin>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${jdk.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.6</version>
<configuration>
<header>header.txt</header>
<excludes>
<exclude>LICENSE.txt</exclude>
<exclude>*.xml</exclude>
<exclude>*.properties</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<configuration>
<forkCount>${fork.count}</forkCount>
<argLine>-Xmx512m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.18.0</version>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>permit-illegal-access</id>
<activation>
<jdk>[16,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--illegal-access=permit</argLine>
<forkCount>${fork.count}</forkCount>
<argLine>-Xmx512m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git:[email protected]:lukas-krecan/ShedLock.git</connection>
<developerConnection>scm:git:[email protected]:lukas-krecan/ShedLock.git</developerConnection>
<url>scm:git:[email protected]:lukas-krecan/ShedLock.git</url>
</scm>
</project>