Skip to content

77.0.0.2082

Latest
Compare
Choose a tag to compare
@sebastienvermeille sebastienvermeille released this 28 Aug 09:14
· 7 commits to master since this release
ab8a67d

What's Changed

  • BUILD-5690 Prepare next snapshot by @sebastienvermeille in #190
  • BUILD-5670: Remove references to burgr by @jayadeep-km-sonarsource in #189
  • BUILD-5722 parent parent oss schedule nightly builds by @sebastienvermeille in #191
  • chore(deps): update sonarsource/gh-action_releasability action to v2 by @renovate in #192
  • chore(deps): update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.8.0 by @renovate in #193
  • chore(deps): update sonarsource/gh-action_release action to v5.9.2 by @renovate in #194
  • chore(deps): update sonarsource/gh-action_releasability action to v2.0.1 by @renovate in #195
  • chore(deps): update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.8.1 by @renovate in #196
  • BUILD-5864: Use ARTIFACTORY_PUBLISH_ARTIFACTS env variable to publish… by @tomverin in #197
  • feat() Prepare for next dev cycle by @tomverin in #198
  • chore(deps): update version.surefire.plugin to v3.4.0 by @renovate in #201
  • chore(deps): update dependency org.apache.maven.plugins:maven-site-plugin to v3.20.0 by @renovate in #200
  • chore(deps): update dependency org.apache.maven.plugins:maven-plugin-plugin to v3.14.0 by @renovate in #199
  • chore(deps): update version.surefire.plugin to v3.5.0 by @renovate in #208
  • chore(deps): update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.10.0 by @renovate in #206
  • chore(deps): update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.8.0 by @renovate in #204
  • chore(deps): update dependency org.apache.maven.plugins:maven-install-plugin to v3.1.3 by @renovate in #203
  • chore(deps): update dependency org.apache.maven.plugins:maven-plugin-plugin to v3.15.0 by @renovate in #207
  • chore(deps): update dependency org.apache.maven.plugins:maven-deploy-plugin to v3.1.3 by @renovate in #202

BREAKING CHANGE

As of maven-javadoc-plugin 3.10.0, the empty Javadoc is generated by default, as suggested in apache/maven-javadoc-plugin#65 (Add generateIfEmpty property to javadoc:jar goal, defaulting to false for backwards compatibility.).

  • maven-javadoc-plugin 3.10.0 defaults to true, with no customization property.

A custom configuration forcing the empty Javadoc generation should be removed; otherwise, two duplicate Javadoc artifacts will be attached to the Maven reactor.

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>empty-javadoc-jar</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <classifier>javadoc</classifier>
              <classesDirectory>${basedir}/javadoc</classesDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>

New Contributors

Full Changelog: 75.0.0.1943...77.0.0.2082