Skip to content

Commit

Permalink
Merge branch 'apache:main' into kie-issues#599
Browse files Browse the repository at this point in the history
  • Loading branch information
jstastny-cz authored Oct 4, 2023
2 parents 1d5ccbf + 4d75ef4 commit b258cba
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
20 changes: 17 additions & 3 deletions build/optaplanner-build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@

<version.asciidoctor.plugin>2.2.3</version.asciidoctor.plugin>
<version.assembly.plugin>3.4.2</version.assembly.plugin>
<!-- jboss suffixed version from jboss-parent which cannot be downloaded due to SNAPSHOT only policy for plugins from JBoss -->
<version.compiler.plugin>3.8.1</version.compiler.plugin>
<version.dependency.plugin>3.5.0</version.dependency.plugin>
<version.formatter.plugin>2.23.0</version.formatter.plugin>
Expand All @@ -77,7 +76,6 @@
Do not upgrade unless prepared to deal with JPMS issues.
If upgrading, ensure build still passes with the full profile (-Dfull).
-->
<version.javadoc.plugin>3.5.0</version.javadoc.plugin>
<version.jaxb2.plugin>2.5.0</version.jaxb2.plugin>
<version.pitest.plugin>1.14.4</version.pitest.plugin>
<version.revapi.plugin>0.15.0</version.revapi.plugin>
Expand Down Expand Up @@ -109,6 +107,8 @@
<schema.filename.benchmark>benchmark-with-import.xsd</schema.filename.benchmark>
<schema.filename.solver>solver.xsd</schema.filename.solver>
<sonar.coverage.exclusions>**/swingui/**/*.java</sonar.coverage.exclusions>

<version.maven-javadoc-plugin.override>3.6.0</version.maven-javadoc-plugin.override>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -469,7 +469,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.javadoc.plugin}</version>
<version>${version.maven-javadoc-plugin.override}</version>
<configuration>
<author>false</author>
<failOnError>true</failOnError>
Expand All @@ -478,6 +478,8 @@
<header combine.self="override" />
<footer combine.self="override" />
<quiet>true</quiet>
<doclint>none</doclint>
<legacyMode>true</legacyMode>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -662,6 +664,18 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-core-deployment</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-builder</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc-deployment</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-core-deployment</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-builder</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc-deployment</artifactId>
Expand Down
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>39</version>
<relativePath/>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>30</version>
</parent>

<groupId>org.optaplanner</groupId>
Expand Down

0 comments on commit b258cba

Please sign in to comment.