blob: 9e7290cc0096659b4b173c4998a59e8b84fd3c82 (
plain) (
blame)
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"?>
<!--
SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
-->
<project xmlns="http://maven.apache.org/POM/4.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd">
<modelVersion>4.1.0</modelVersion>
<groupId>lv.enes</groupId>
<artifactId>buildstuffs</artifactId>
<version>1.0.0-SNAPSHOT</version>
<licenses>
<license>
<name>AGPL-3.0-or-later</name>
<url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
<distribution>repo</distribution>
<comments>GNU Affero General Public License</comments>
</license>
</licenses>
<distributionManagement>
<repository>
<id>mvn.enes.lv</id>
<name>enes.lv Maven</name>
<url>https://mvn.enes.lv</url>
</repository>
</distributionManagement>
<!-- There is a small duplication between this and the parent pom.xml to avoid dependency loops. -->
<properties>
<maven.version-range>[4.0.0-rc-3]</maven.version-range>
<clean-plugin.version>3.4.1</clean-plugin.version>
<compiler-plugin.version>3.14.0</compiler-plugin.version>
<deploy-plugin.version>3.1.4</deploy-plugin.version>
<enforcer-plugin.version>3.5.0</enforcer-plugin.version>
<install-plugin.version>3.1.4</install-plugin.version>
<jar-plugin.version>3.4.2</jar-plugin.version>
<resources-plugin.version>3.3.1</resources-plugin.version>
<surefire-plugin.version>3.5.3</surefire-plugin.version>
<versions-plugin.version>2.18.0</versions-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${clean-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${enforcer-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<fail>true</fail>
<rules>
<requireMavenVersion>
<version>${maven.version-range}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>${install-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${resources-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-plugin.version}</version>
<configuration>
<ignoredVersions>.*-M.*,.*-RC.*,.*-alpha.*,.*-beta.*</ignoredVersions>
</configuration>
</plugin>
</plugins>
</build>
</project>
|