-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
103 lines (88 loc) · 3.68 KB
/
Copy pathpom.xml
File metadata and controls
103 lines (88 loc) · 3.68 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
<?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">
<developers>
<developer>
<id>olshansky</id>
<name>Grigory Olshansky</name>
<roles>
<role>Author</role>
<role>Maintainer</role>
</roles>
</developer>
</developers>
<modelVersion>4.0.0</modelVersion>
<groupId>ru.hawk</groupId>
<artifactId>wiremock-web-ui</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>wiremock-web-ui</name>
<description>Web Web UI for WireMock (Logs + Mappings)</description>
<modules>
<module>frontend</module>
<module>backend</module>
</modules>
<properties>
<java.version>21</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>3.4.2</spring-boot.version>
<node.version>v20.11.1</node.version>
<npm.version>10.2.4</npm.version>
<maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version>
<frontend.maven.plugin.version>1.15.1</frontend.maven.plugin.version>
<maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
<wiremock-standalone.version>3.13.2</wiremock-standalone.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven.enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.9.0,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[${java.version},)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend.maven.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>