Skip to content

Commit 57f5480

Browse files
Bump org.codehaus.mojo:mojo-parent from 78 to 81 (#204)
* Bump org.codehaus.mojo:mojo-parent from 78 to 81 Bumps [org.codehaus.mojo:mojo-parent](https://github.com/mojohaus/mojo-parent) from 78 to 81. - [Release notes](https://github.com/mojohaus/mojo-parent/releases) - [Commits](https://github.com/mojohaus/mojo-parent/commits) --- updated-dependencies: - dependency-name: org.codehaus.mojo:mojo-parent dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix build with new parent --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slawomir Jaranowski <[email protected]>
1 parent c09d779 commit 57f5480

File tree

2 files changed

+15
-26
lines changed

2 files changed

+15
-26
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MojoHaus Build Helper Maven Plugin
2-
2+
33
[![The MIT License](https://img.shields.io/github/license/mojohaus/build-helper-maven-plugin.svg?label=License)](https://opensource.org/licenses/MIT)
44
[![Maven Central](https://img.shields.io/maven-central/v/org.codehaus.mojo/build-helper-maven-plugin.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.codehaus.mojo/build-helper-maven-plugin)
55
[![Build Status](https://github.com/mojohaus/build-helper-maven-plugin/workflows/GitHub%20CI/badge.svg?branch=master)](https://github.com/mojohaus/build-helper-maven-plugin/actions/workflows/maven.yml?query=branch%3Amaster)
@@ -21,3 +21,4 @@ For publishing the site do the following:
2121
cd target/checkout
2222
mvn verify site site:stage scm-publish:publish-scm
2323
```
24+

pom.xml

+13-25
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.codehaus.mojo</groupId>
77
<artifactId>mojo-parent</artifactId>
8-
<version>78</version>
8+
<version>81</version>
99
</parent>
1010

1111
<artifactId>build-helper-maven-plugin</artifactId>
@@ -74,7 +74,6 @@
7474
</ciManagement>
7575

7676
<properties>
77-
<recommendedJavaBuildVersion>11</recommendedJavaBuildVersion>
7877
<scmpublish.content>${project.build.directory}/staging/build-helper-maven-plugin</scmpublish.content>
7978
<project.build.outputTimestamp>2023-11-24T19:44:40Z</project.build.outputTimestamp>
8079
</properties>
@@ -133,6 +132,18 @@
133132
</dependency>
134133
</dependencies>
135134

135+
<build>
136+
<plugins>
137+
<plugin>
138+
<groupId>org.apache.maven.plugins</groupId>
139+
<artifactId>maven-checkstyle-plugin</artifactId>
140+
<configuration>
141+
<violationIgnore>MagicNumber</violationIgnore>
142+
</configuration>
143+
</plugin>
144+
</plugins>
145+
</build>
146+
136147
<profiles>
137148

138149
<profile>
@@ -164,29 +175,6 @@
164175
</build>
165176
</profile>
166177

167-
<profile>
168-
<id>java11+</id>
169-
<activation>
170-
<jdk>[11,)</jdk>
171-
</activation>
172-
<build>
173-
<plugins>
174-
<plugin>
175-
<groupId>com.diffplug.spotless</groupId>
176-
<artifactId>spotless-maven-plugin</artifactId>
177-
</plugin>
178-
<plugin>
179-
<groupId>org.apache.maven.plugins</groupId>
180-
<artifactId>maven-checkstyle-plugin</artifactId>
181-
<configuration>
182-
<configLocation>${checkstyle.spotless.config}</configLocation>
183-
<violationIgnore>MagicNumber</violationIgnore>
184-
</configuration>
185-
</plugin>
186-
</plugins>
187-
</build>
188-
</profile>
189-
190178
<!-- This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
191179
<profile>
192180
<id>only-eclipse</id>

0 commit comments

Comments
 (0)