Skip to content

Commit f0426f4

Browse files
authored
Merge branch 'master' into snyk-fix-fb912fd8a3065715deee112b913a49d4
2 parents 9b4ff0d + 575bc6e commit f0426f4

File tree

314 files changed

+16758
-6298
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+16758
-6298
lines changed

.github/workflows/maven-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up JDK 16
14+
- name: Set up JDK 2
1515
uses: actions/setup-java@v2
1616
with:
17-
java-version: '16'
17+
java-version: '21'
1818
distribution: 'adopt'
1919
- name: Build with Maven
2020
run: sudo -- sh -c "export methodscript_run_llvm_integration_tests=1 && export PATH=$JAVA_HOME/bin:\$PATH && export JAVA_HOME=$JAVA_HOME && mvn -version && mvn -B clean package --file pom.xml -Pfail-on-test-failures"
@@ -24,23 +24,23 @@ jobs:
2424
methodscript_run_llvm_integration_tests: 1
2525
steps:
2626
- uses: actions/checkout@v2
27-
- name: Set up JDK 16
27+
- name: Set up JDK 21
2828
uses: actions/setup-java@v2
2929
with:
30-
java-version: '16'
30+
java-version: '21'
3131
distribution: 'adopt'
3232
- name: Build with Maven
3333
run: mvn -B clean package --file pom.xml -Pfail-on-test-failures
3434
build_mac:
3535
runs-on: macos-latest
3636
steps:
3737
- uses: actions/checkout@v2
38-
- name: Set up JDK 16
38+
- name: Set up JDK 21
3939
uses: actions/setup-java@v2
4040
env:
4141
methodscript_run_llvm_integration_tests: 1
4242
with:
43-
java-version: '16'
43+
java-version: '21'
4444
distribution: 'adopt'
4545
- name: Build with Maven
4646
run: mvn -version && mvn -B clean package --file pom.xml -Pfail-on-test-failures
@@ -53,10 +53,10 @@ jobs:
5353
packages: write
5454
steps:
5555
- uses: actions/checkout@v2
56-
- name: Set up JDK 16
56+
- name: Set up JDK 21
5757
uses: actions/setup-java@v2
5858
with:
59-
java-version: '16'
59+
java-version: '21'
6060
distribution: 'adopt'
6161
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
6262
settings-path: ${{ github.workspace }} # location for the settings.xml file

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- name: Set up JDK 16
15+
- name: Set up JDK 21
1616
uses: actions/setup-java@v2
1717
with:
18-
java-version: '16'
18+
java-version: '21'
1919
distribution: 'adopt'
2020
- name: Build with Maven
2121
run: sudo -- sh -c "export methodscript_run_llvm_integration_tests=1 && export PATH=$JAVA_HOME/bin:\$PATH && export JAVA_HOME=$JAVA_HOME && mvn -version && mvn -B clean package --file pom.xml -Pfail-on-test-failures"
@@ -25,10 +25,10 @@ jobs:
2525
methodscript_run_llvm_integration_tests: 1
2626
steps:
2727
- uses: actions/checkout@v2
28-
- name: Set up JDK 16
28+
- name: Set up JDK 21
2929
uses: actions/setup-java@v2
3030
with:
31-
java-version: '16'
31+
java-version: '21'
3232
distribution: 'adopt'
3333
- name: Build with Maven
3434
run: mvn -B clean package --file pom.xml -Pfail-on-test-failures

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,3 +338,9 @@ ASALocalRun/
338338
# MethodScript
339339
persistence.db
340340
persistence.json
341+
342+
# TSP
343+
src/main/resources/apps.methodscript.com/tsp-output
344+
345+
# VSCode
346+
.vscode

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ pool:
99
steps:
1010
- task: JavaToolInstaller@0
1111
inputs:
12-
versionSpec: '16'
12+
versionSpec: '21'
1313
jdkArchitectureOption: x64
1414
jdkSourceOption: 'AzureStorage'
1515
azureResourceManagerEndpoint: Azure Resource Manager
1616
azureStorageAccountName: methodscriptjdkbuilds
1717
azureContainerName: jdks
18-
azureCommonVirtualFile: 'OpenJDK16U-jdk_x86-32_windows_hotspot_16.0.1_9.zip'
19-
jdkDestinationDirectory: '$(agent.toolsDirectory)/jdk16'
18+
azureCommonVirtualFile: 'OpenJDK21U-jdk_x64_windows_hotspot_21.0.3_9.zip'
19+
jdkDestinationDirectory: '$(agent.toolsDirectory)/jdk21'
2020
cleanDestinationDirectory: true
2121
- task: Maven@3
2222
inputs:
2323
mavenPomFile: 'pom.xml'
24-
javaHomeOption: 'JDKVersion'
25-
jdkVersionOption: '1.16'
24+
javaHomeOption: 'Path'
25+
jdkDirectory: '$(agent.toolsDirectory)\jdk21\JAVA_HOME_21_X64_OpenJDK21U-jdk_x64_windows_hotspot_21.0.3_9_zip\jdk-21.0.3+9'
2626
jdkArchitectureOption: 'x64'
2727
publishJUnitResults: true
2828
testResultsFiles: '**/TEST-*.xml'

nb-configuration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInit>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInit>
3838
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInitItems>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInitItems>
3939
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapObjects>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapObjects>
40-
<netbeans.hint.jdkPlatform>JDK_16</netbeans.hint.jdkPlatform>
40+
<netbeans.hint.jdkPlatform>JDK_17</netbeans.hint.jdkPlatform>
4141
</properties>
4242
</project-shared-configuration>

0 commit comments

Comments
 (0)