Skip to content

Commit

Permalink
Remove unused editor config Java plugin (#4122)
Browse files Browse the repository at this point in the history
We use spotless to reformat Java code and editor config is not used
anymore.

Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>
  • Loading branch information
pierDipi authored Oct 1, 2024
1 parent e3ede63 commit 55b6264
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 35 deletions.
12 changes: 0 additions & 12 deletions data-plane/contract/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,4 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.ec4j.maven</groupId>
<artifactId>editorconfig-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

</project>
22 changes: 0 additions & 22 deletions data-plane/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<maven.jar.plugin.version>3.4.2</maven.jar.plugin.version>
<maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version>
<maven.shade.plugin.version>3.5.1</maven.shade.plugin.version>
<maven.editorconfig.plugin.version>0.1.1</maven.editorconfig.plugin.version>
<maven.jacoco.plugin.version>0.8.12</maven.jacoco.plugin.version>
<maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version>
<maven.license.plugin.version>2.0.0</maven.license.plugin.version>
Expand Down Expand Up @@ -460,27 +459,6 @@
</from>
</configuration>
</plugin>
<plugin>
<groupId>org.ec4j.maven</groupId>
<artifactId>editorconfig-maven-plugin</artifactId>
<version>${maven.editorconfig.plugin.version}</version>
<executions>
<execution>
<id>check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>.dockerignore</exclude>
<exclude>config/***</exclude>
<exclude>.mvn/***</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion data-plane/profiler/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ echo "Async profiler URL: ${ASYNC_PROFILER_URL}"
echo "Kafka URL: ${KAFKA_URL}"

# Build the data plane.
cd "${PROJECT_ROOT_DIR}" && ./mvnw package -DskipTests -Dlicense.skip -Deditorconfig.skip -B -U --no-transfer-progress && cd - || exit 1
cd "${PROJECT_ROOT_DIR}" && ./mvnw package -DskipTests -Dlicense.skip -B -U --no-transfer-progress && cd - || exit 1

# Download async profiler.
rm -rf async-profiler
Expand Down

0 comments on commit 55b6264

Please sign in to comment.