Skip to content
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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
with:
path: ~/.m2/wrapper
key: maven-wrapper-${{ hashFiles('**/mvnw') }}
- name: Set up Adoptium JDK 17
- name: Set up Eclipse Temurin JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
distribution: 'temurin'
- name: Build and test Quarkus jdt component
run: cd quarkus.jdt.ext && ./mvnw -B -U clean verify && cd ..
- name: Build and test Quarkus language server component
Expand Down
2 changes: 1 addition & 1 deletion quarkus.jdt.ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<tycho.generateSourceReferences>true</tycho.generateSourceReferences>
<jdt.ls.version>1.25.0-SNAPSHOT</jdt.ls.version>
<tycho.test.platformArgs />
<tycho.test.jvmArgs>-Xmx512m ${tycho.test.platformArgs}</tycho.test.jvmArgs>
<tycho.test.jvmArgs>-Xmx512m -DDetectVMInstallationsJob.disabled=true ${tycho.test.platformArgs}</tycho.test.jvmArgs>
<lsp4mp.p2.url>https://download.eclipse.org/lsp4mp/snapshots/0.8.0/repository/</lsp4mp.p2.url>

<!-- Code coverage -->
Expand Down
2 changes: 1 addition & 1 deletion qute.jdt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tycho.generateSourceReferences>true</tycho.generateSourceReferences>
<jdt.ls.version>1.25.0-SNAPSHOT</jdt.ls.version>
<tycho.test.platformArgs />
<tycho.test.jvmArgs>-Xmx512m ${tycho.test.platformArgs}</tycho.test.jvmArgs>
<tycho.test.jvmArgs>-Xmx512m -DDetectVMInstallationsJob.disabled=true ${tycho.test.platformArgs}</tycho.test.jvmArgs>

<!-- Code coverage -->
<jacoco.version>0.8.8</jacoco.version>
Expand Down