Skip to content

Commit

Permalink
Remove Java 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandru Marian Stancioiu committed May 16, 2024
1 parent 70a7b4f commit bf71283
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11

# Set up dependency cache
- name: Cache local Maven repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11

# Set up dependency cache
- name: Cache local Maven repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [8, 11]
java: [11]
profile: [ '', '-Pcloud,adobe-public']

steps:
Expand Down
4 changes: 2 additions & 2 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<vault.user>admin</vault.user>
<vault.password>admin</vault.password>
<slf4j.version>1.7.25</slf4j.version>
<aem.java.version>8</aem.java.version>
<aem.java.version>11</aem.java.version>
<jacoco.version>0.8.8</jacoco.version>
<frontend-maven-plugin.version>1.11.3</frontend-maven-plugin.version>
<node.version>v16.13.1</node.version>
Expand Down Expand Up @@ -336,7 +336,7 @@
</requireMavenVersion>
<requireJavaVersion>
<message>Project must be compiled with Java ${aem.java.version} or higher</message>
<version>1.${aem.java.version}</version>
<version>${aem.java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion testing/it/e2e-selenium/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
</build>

<properties>
<cq.java.version>8</cq.java.version>
<cq.java.version>11</cq.java.version>
<excludedGroups>failing,nested</excludedGroups>
<granite.it.author.url>http://localhost:4502</granite.it.author.url>
<granite.it.publish.url>http://localhost:4503</granite.it.publish.url>
Expand Down
6 changes: 3 additions & 3 deletions testing/it/http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.${cq.java.version}</source>
<target>1.${cq.java.version}</target>
<source>${cq.java.version}</source>
<target>${cq.java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -148,7 +148,7 @@
<granite.it.publish.url>http://localhost:4503</granite.it.publish.url>
<sling.junit.core.version>1.0.28</sling.junit.core.version>
<sling.testing.tools.version>1.0.8</sling.testing.tools.version>
<cq.java.version>8</cq.java.version>
<cq.java.version>11</cq.java.version>
<test.thread.count>30</test.thread.count>
</properties>

Expand Down

0 comments on commit bf71283

Please sign in to comment.