-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
112 lines (106 loc) · 4.58 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
(c) Copyright 2024-2024, ANS. All rights reserved.
-->
<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>fr.gouv.esante.apim.checkrules</groupId>
<artifactId>check-apim-rules-parent</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>apim-ruleschecker</name>
<inceptionYear>2024</inceptionYear>
<scm>
<connection>scm:git:https://github.com/ansforge/gravitee-controles-api.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
<java.version>17</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<spring.version>3.3.3</spring.version>
<jackson.version>0.2.6</jackson.version>
<junit.version>5.11.0</junit.version>
<wiremock.version>3.9.1</wiremock.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springdoc.version>2.2.0</springdoc.version>
<license.current.year>2024</license.current.year>
<project.scm.id>ansforge</project.scm.id>
</properties>
<modules>
<module>gravitee-client</module>
<module>ruleschecker</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>jackson-databind-nullable</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock-jetty12</artifactId>
<version>${wiremock.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.5</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
<configuration>
<header>licence-header.txt</header>
<properties>
<!--
This license current year is computed. If we wanted to rebuild an old version without
changing license headers, we would just need to add -Dlicense.current.year=XXX to the maven command line.
-->
<yearSpan>${inceptionYear}-${license.current.year}</yearSpan>
</properties>
<mapping>
<Jenkinsfile>JAVADOC_STYLE</Jenkinsfile>
<hcl>SCRIPT_STYLE</hcl>
<nomad.tpl>SCRIPT_STYLE</nomad.tpl>
<java>SLASHSTAR_STYLE</java>
</mapping>
<excludes>
<exclude>**/ASIPGlobalSettings.xml</exclude>
<exclude>**/ASIPProfilesSettings.xml</exclude>
<exclude>**/dependency-check-report.xml</exclude>
<exclude>reports/report.html</exclude>
<exclude>**/messages*</exclude>
</excludes>
<aggregate>false</aggregate>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
</plugins>
</build>
</project>