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

Use spring-boot-starter-parent in spring-batch-elasticsearch #168

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

scordio
Copy link
Collaborator

@scordio scordio commented Mar 16, 2025

Similar to #159, #163, and #165, this PR:

  • Uses the spring-boot-starter-parent to keep all the dependency and plugin versions aligned
  • Uses the flatten-maven-plugin with ossrh flatten mode to strip all the unnecessary details from the final POM
Flattened POM

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.springframework.batch.extensions</groupId>
  <artifactId>spring-batch-elasticsearch</artifactId>
  <version>0.1.0-SNAPSHOT</version>
  <name>Spring Batch Elasticsearch</name>
  <description>Spring Batch extension for Elasticsearch</description>
  <url>https://github.com/spring-projects/spring-batch-extensions/tree/main/spring-batch-elasticsearch</url>
  <licenses>
    <license>
      <name>Apache-2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/spring-projects/spring-batch-extensions/tree/main/spring-batch-elasticsearch</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.springframework.batch</groupId>
      <artifactId>spring-batch-core</artifactId>
      <version>3.0.10.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.data</groupId>
      <artifactId>spring-data-elasticsearch</artifactId>
      <version>2.1.23.RELEASE</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

@scordio scordio requested a review from fmbenhassine March 16, 2025 17:45
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.22.RELEASE</version>
Copy link
Collaborator Author

@scordio scordio Mar 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the latest 1.5 available.

Moving to a higher major version requires refactoring of the item reader and writer due to breaking changes, which would be beyond the scope of this PR.

<flattenMode>ossrh</flattenMode>
<pomElements>
<developers>remove</developers> <!-- FIXME remove once the developers are defined -->
Copy link
Collaborator Author

@scordio scordio Mar 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @fmbenhassine, I understand from #166 (comment) that @hpoettker will maintain this module.

Since I couldn't add their handle for review, I assume the onboarding is not complete yet.

Therefore, I haven't added any developers section to the POM and added this parameter to prevent pulling the ones defined in the spring-boot-starter-parent.

Signed-off-by: Stefano Cordio <stefano.cordio@gmail.com>
@scordio scordio force-pushed the spring-batch-elasticsearch-pom branch from 67ad345 to 995506c Compare March 16, 2025 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant