Skip to content

Commit c191df2

Browse files
committed
Start on [CALCITE-1258] JDK9 support
Tried to upgrade plexus-archiver to get fix for codehaus-plexus/plexus-archiver#12 but maven doesn't seem to be seeing it yet.
1 parent 240cee4 commit c191df2

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

pom.xml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,10 +511,10 @@ limitations under the License.
511511
<id>validate</id>
512512
<phase>validate</phase>
513513
<configuration>
514-
<configLocation>${top.dir}/src/main/config/checkstyle/checker.xml</configLocation>
515-
<suppressionsLocation>${top.dir}/src/main/config/checkstyle/suppressions.xml</suppressionsLocation>
514+
<configLocation>file:${top.dir}/src/main/config/checkstyle/checker.xml</configLocation>
515+
<suppressionsLocation>file:${top.dir}/src/main/config/checkstyle/suppressions.xml</suppressionsLocation>
516516
<consoleOutput>true</consoleOutput>
517-
<headerLocation>${top.dir}/src/main/config/checkstyle/header.txt</headerLocation>
517+
<headerLocation>file:${top.dir}/src/main/config/checkstyle/header.txt</headerLocation>
518518
<failOnViolation>true</failOnViolation>
519519
<includeTestSourceDirectory>true</includeTestSourceDirectory>
520520
</configuration>
@@ -662,6 +662,28 @@ limitations under the License.
662662
<artifactId>checksum-maven-plugin</artifactId>
663663
<version>${checksum-maven-plugin.version}</version>
664664
</plugin>
665+
<plugin>
666+
<groupId>org.apache.maven.plugins</groupId>
667+
<artifactId>maven-assembly-plugin</artifactId>
668+
<dependencies>
669+
<dependency>
670+
<groupId>org.codehaus.plexus</groupId>
671+
<artifactId>plexus-archiver</artifactId>
672+
<version>3.0.3</version>
673+
</dependency>
674+
</dependencies>
675+
</plugin>
676+
<plugin>
677+
<groupId>org.apache.maven.plugins</groupId>
678+
<artifactId>maven-jar-plugin</artifactId>
679+
<dependencies>
680+
<dependency>
681+
<groupId>org.codehaus.plexus</groupId>
682+
<artifactId>plexus-archiver</artifactId>
683+
<version>3.0.3</version>
684+
</dependency>
685+
</dependencies>
686+
</plugin>
665687
<plugin>
666688
<groupId>org.apache.maven.plugins</groupId>
667689
<artifactId>maven-checkstyle-plugin</artifactId>

0 commit comments

Comments
 (0)