Skip to content

Commit

Permalink
Surefire issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-lsembera committed Apr 30, 2024
1 parent 3604393 commit 8ef1893
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/End2EndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Java ${{ matrix.java }}
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
java-version: |
8
${{ matrix.java }}
cache: maven

- name: Decrypt profile.json
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<snappy.version>1.1.10.4</snappy.version>
<snowjdbc.version>3.14.5</snowjdbc.version>
<yetus.version>0.13.0</yetus.version>
<powermock.version>2.0.9</powermock.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -517,19 +518,19 @@
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>2.0.2</version>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-core</artifactId>
<version>2.0.2</version>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>2.0.2</version>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<!-- Change the 'test' scope to 'runtime' to enable console logging in examples -->
Expand Down Expand Up @@ -596,7 +597,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
Expand Down Expand Up @@ -782,7 +783,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<excludes>
<exclude>**/TestSimpleIngestLocal.java</exclude>
Expand Down

0 comments on commit 8ef1893

Please sign in to comment.