Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

139 update to java 11 #140

Merged
merged 3 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/maven-publish-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 8.0.275+1
distribution: liberica
java-version: 11
distribution: temurin
# Set up dependency cache
- name: Cache local Maven repository
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 8.0.275+1
distribution: liberica
java-version: 11
distribution: temurin

# Set up dependency cache
- name: Cache local Maven repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/onPushSimpleTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 8.0.275+1
distribution: liberica
java-version: 11
distribution: temurin
- name: Build with Maven
run: mvn --batch-mode clean test
env:
Expand Down
16 changes: 5 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.adobe.campaign.tests.phased</groupId>
<artifactId>phased-testing-testng</artifactId>
<version>8.0.1-SNAPSHOT</version>
<version>8.11.1-SNAPSHOT</version>
<description>A TestNG listener that allows you to write and execute tests in a phased mode</description>
<url>https://github.com/adobe/phased-testing</url>
<packaging>jar</packaging>
Expand Down Expand Up @@ -63,14 +63,6 @@
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- License information -->
<plugin>
<groupId>com.mycila</groupId>
Expand Down Expand Up @@ -242,6 +234,8 @@
<sonar.organization>adobeinc</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<log4j.version>2.17.1</log4j.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<reporting>
<plugins>
Expand All @@ -251,7 +245,7 @@
<version>2.10.4</version>
<configuration>
<stylesheet>java</stylesheet>
<source>8</source>
<source>11</source>
</configuration>
</plugin>
</plugins>
Expand Down Expand Up @@ -282,7 +276,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.5</version>
<version>7.8.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down