Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XXX: Use updated 2.2.2 linter with editorconfig-maven-plugin 0.1.3 for the fixed .idea default exclude #21

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<properties>
<!-- project version -->
<revision>1.2.0</revision>
<revision>1.2.1</revision>
<changelist>-SNAPSHOT</changelist>
</properties>

Expand Down
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<properties>
<!-- project version -->
<revision>1.2.0</revision>
<revision>1.2.1</revision>
<changelist>-SNAPSHOT</changelist>
<!-- dependencyManagement versions -->
<jetbrains-annotations.version>24.1.0</jetbrains-annotations.version>
Expand All @@ -33,7 +33,8 @@
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
<maven-shade-plugin.version>3.5.3</maven-shade-plugin.version>
<editorconfig-maven-plugin.version>0.1.3</editorconfig-maven-plugin.version>
<editorconfig-maven-plugin.version>0.1.3</editorconfig-maven-plugin.version> <!-- XXX: Remove linter dependency overrides when
upgrading from 0.1.3 -->
<maven-pmd-plugin.version>3.22.0</maven-pmd-plugin.version>
<pmd-core.version>7.1.0</pmd-core.version>
<pmd-java.version>7.1.0</pmd-java.version>
Expand Down Expand Up @@ -215,6 +216,19 @@
</goals>
</execution>
</executions>
<dependencies>
<!-- Use updated 2.2.2 linter with editorconfig-maven-plugin 0.1.3 for the fixed .idea default exclude. -->
<dependency>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-lint-api</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.ec4j.linters</groupId>
<artifactId>editorconfig-linters</artifactId>
<version>2.2.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion versions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<properties>
<!-- project version -->
<revision>1.2.0</revision>
<revision>1.2.1</revision>
<changelist>-SNAPSHOT</changelist>
<!-- project settings -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down