summaryrefslogtreecommitdiff
path: root/buildstuffs
diff options
context:
space:
mode:
Diffstat (limited to 'buildstuffs')
-rw-r--r--buildstuffs/pom.xml6
-rw-r--r--buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle-suppressions.xml2
-rw-r--r--buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle.xml8
-rw-r--r--buildstuffs/src/main/resources/lv/enes/buildstuffs/pmd-rules.xml4
4 files changed, 11 insertions, 9 deletions
diff --git a/buildstuffs/pom.xml b/buildstuffs/pom.xml
index 74404d7..2d2fe0b 100644
--- a/buildstuffs/pom.xml
+++ b/buildstuffs/pom.xml
@@ -1,6 +1,6 @@
1<?xml version="1.0" encoding="UTF-8"?> 1<?xml version="1.0" encoding="UTF-8"?>
2<!-- 2<!--
3 SPDX-License-Identifier: AGPL-3.0-or-later 3 SPDX-License-Identifier: EUPL-1.2
4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com> 4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com>
5 --> 5 -->
6<project xmlns="http://maven.apache.org/POM/4.1.0" 6<project xmlns="http://maven.apache.org/POM/4.1.0"
@@ -10,7 +10,7 @@
10 10
11 <groupId>lv.enes</groupId> 11 <groupId>lv.enes</groupId>
12 <artifactId>buildstuffs</artifactId> 12 <artifactId>buildstuffs</artifactId>
13 <version>1.0.0-SNAPSHOT</version> 13 <version>3-SNAPSHOT</version>
14 14
15 <licenses> 15 <licenses>
16 <license> 16 <license>
@@ -47,7 +47,7 @@
47 <jar-plugin.version>3.5.0</jar-plugin.version> 47 <jar-plugin.version>3.5.0</jar-plugin.version>
48 <resources-plugin.version>3.4.0</resources-plugin.version> 48 <resources-plugin.version>3.4.0</resources-plugin.version>
49 <surefire-plugin.version>3.5.4</surefire-plugin.version> 49 <surefire-plugin.version>3.5.4</surefire-plugin.version>
50 <versions-plugin.version>2.20.1</versions-plugin.version> 50 <versions-plugin.version>2.21.0</versions-plugin.version>
51 </properties> 51 </properties>
52 52
53 <build> 53 <build>
diff --git a/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle-suppressions.xml b/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle-suppressions.xml
index 32e7a96..2afc30d 100644
--- a/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle-suppressions.xml
+++ b/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle-suppressions.xml
@@ -1,6 +1,6 @@
1<?xml version="1.0" encoding="UTF-8"?> 1<?xml version="1.0" encoding="UTF-8"?>
2<!-- 2<!--
3 SPDX-License-Identifier: AGPL-3.0-or-later 3 SPDX-License-Identifier: EUPL-1.2
4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com> 4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com>
5 --> 5 -->
6<!DOCTYPE suppressions PUBLIC 6<!DOCTYPE suppressions PUBLIC
diff --git a/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle.xml b/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle.xml
index 6680d5d..59c240f 100644
--- a/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle.xml
+++ b/buildstuffs/src/main/resources/lv/enes/buildstuffs/checkstyle.xml
@@ -1,7 +1,7 @@
1<?xml version="1.0"?> 1<?xml version="1.0"?>
2<!-- 2<!--
3 SPDX-License-Identifier: AGPL-3.0-or-later 3 SPDX-License-Identifier: EUPL-1.2
4 SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> 4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com>
5 --> 5 -->
6<!DOCTYPE module PUBLIC 6<!DOCTYPE module PUBLIC
7 "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" 7 "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
@@ -37,7 +37,9 @@
37 <!-- ## Annotations ## --> 37 <!-- ## Annotations ## -->
38 <module name="AnnotationLocation" /> 38 <module name="AnnotationLocation" />
39 <!-- NO AnnotationOnSameLine --> 39 <!-- NO AnnotationOnSameLine -->
40 <module name="AnnotationUseStyle" /> 40 <module name="AnnotationUseStyle">
41 <property name="trailingArrayComma" value="ignore"/>
42 </module>
41 <module name="MissingDeprecated" /> 43 <module name="MissingDeprecated" />
42 <module name="MissingOverride" /> 44 <module name="MissingOverride" />
43 <module name="PackageAnnotation" /> 45 <module name="PackageAnnotation" />
diff --git a/buildstuffs/src/main/resources/lv/enes/buildstuffs/pmd-rules.xml b/buildstuffs/src/main/resources/lv/enes/buildstuffs/pmd-rules.xml
index 7cc91f5..7ba252b 100644
--- a/buildstuffs/src/main/resources/lv/enes/buildstuffs/pmd-rules.xml
+++ b/buildstuffs/src/main/resources/lv/enes/buildstuffs/pmd-rules.xml
@@ -1,7 +1,7 @@
1<?xml version="1.0"?> 1<?xml version="1.0"?>
2<!-- 2<!--
3 SPDX-License-Identifier: AGPL-3.0-or-later 3 SPDX-License-Identifier: EUPL-1.2
4 SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> 4 SPDX-FileCopyrightText: 2025-2026 Uko Kokņevičs <perkontevs@gmail.com>
5 --> 5 -->
6<ruleset name="Custom Rules" 6<ruleset name="Custom Rules"
7 xmlns="http://pmd.sourceforge.net/ruleset/2.0.0" 7 xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"