-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
207 lines (197 loc) · 9.41 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>fr.ght1pc9kc</groupId>
<artifactId>baywatch</artifactId>
<version>2.2.1</version>
<name>baywatch</name>
<packaging>pom</packaging>
<modules>
<module>sandside</module>
<module>seaside</module>
<module>assembly</module>
</modules>
<properties>
<java.version>21</java.version>
<db.driver>org.sqlite.JDBC</db.driver>
<db.url>jdbc:sqlite:file:${project.build.directory}/jooq_baywatch.db</db.url>
<db.username>security</db.username>
<db.password>security</db.password>
<aalto-xml.version>1.3.3</aalto-xml.version>
<html-sanitizer.version>20240325.1</html-sanitizer.version>
<jetbrains.version>24.1.0</jetbrains.version>
<json-unit.version>3.4.1</json-unit.version>
<juery.version>1.4.2</juery.version>
<entity.version>1.3.1</entity.version>
<logback-json.version>0.1.5</logback-json.version>
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
<lucene.version>9.11.1</lucene.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<nbvcxz.version>1.5.1</nbvcxz.version>
<nimbus-jose-jwt.version>9.40</nimbus-jose-jwt.version>
<noexception.version>1.9.1</noexception.version>
<scraphead.version>1.4.1</scraphead.version>
<testy-box.version>1.7.2</testy-box.version>
<ulid-creator.version>5.2.3</ulid-creator.version>
<unbescape.version>1.1.6.RELEASE</unbescape.version>
<exec-maven-plugin.version>3.3.0</exec-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<jib-maven-plugin.version>3.4.4</jib-maven-plugin.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-clean-plugin.version>3.4.0</maven-clean-plugin.version>
<jooq-codegen-maven.version>3.19.10</jooq-codegen-maven.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-dependency-plugin.version>3.7.1</maven-dependency-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
<pl-git-commit-id-plugin.version>4.9.10</pl-git-commit-id-plugin.version>
<versions-maven-plugin.version>2.17.0</versions-maven-plugin.version>
<flyway-maven-plugin.version>10.15.2</flyway-maven-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<version>${jooq-codegen-maven.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>${jib-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>${pl-git-commit-id-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>${flyway-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
<configuration>
<processDependencyManagementTransitive>false</processDependencyManagementTransitive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>sonar</id>
<properties>
<sonar.projectKey>Marthym_baywatch</sonar.projectKey>
<sonar.organization>ght1pc9kc-fr</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
<sonar.coverage.jacoco.xmlReportPaths>**/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.javascript.lcov.reportPaths>**/lcov.info
</sonar.javascript.lcov.reportPaths>
<sonar.coverage.exclusions>
**/*.html,
**/*.test.*,
**/locales/**,
${project.basedir}/seaside/dist/**
</sonar.coverage.exclusions>
<sonar.exclusions>
**/*.html,
**/locales/**,
**/dist/**
</sonar.exclusions>
<sonar.java.binaries>${project.build.directory}/classes</sonar.java.binaries>
<sonar.java.libraries>${project.build.directory}/dependency</sonar.java.libraries>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>aggregate</id>
<goals>
<goal>report-aggregate</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${maven-dependency-plugin.version}</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>lombok</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>