Skip to content

Commit

Permalink
Fix IT - ISSUE-324, use newer m-compiler-p
Browse files Browse the repository at this point in the history
- exclude artifact available by http repo
- use newer m-compiler-p due to old default target version
  • Loading branch information
slawekjaranowski committed May 2, 2023
1 parent 3498616 commit bf968fd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/it/ISSUE-135/pom.xml
Expand Up @@ -28,7 +28,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand Down
2 changes: 1 addition & 1 deletion src/it/ISSUE-145-2/pom.xml
Expand Up @@ -40,7 +40,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>3.11.0</version>
</plugin>
</plugins>

Expand Down
2 changes: 1 addition & 1 deletion src/it/ISSUE-145/pom.xml
Expand Up @@ -38,7 +38,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>3.11.0</version>
</plugin>
</plugins>

Expand Down
8 changes: 8 additions & 0 deletions src/it/ISSUE-324/child1/pom.xml
Expand Up @@ -15,6 +15,14 @@
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-hcatalog-core</artifactId>
<version>2.3.4</version>
<exclusions>
<exclusion>
<!-- this artifacts is available by http repository -->
<!-- it is blocked by newer Maven -->
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner-algorithm</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- This has a newer hbase-annotations without jdk.tools. This path to hbase-annotations is shorter, so has precedence -->
<dependency>
Expand Down

0 comments on commit bf968fd

Please sign in to comment.