Skip to content

Commit 49f83d5

Browse files
Allow mvn test execution for entire windows family (#853)
While we typically execute builds and testing for openjceplus on windows 2022 we would like to remove the restriction so they can be run on other machines also. Signed-off-by: Jason Katonica <[email protected]>
1 parent ac7d6a8 commit 49f83d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Build Status:
2727

2828
## How to Build `OpenJCEPlus` and Java Native Interface Library
2929

30-
`OpenJCEPlus` and `OpenJCEPlusFIPS` providers are currently supported on the following architectures and operating system combinations as reported by `mvn --version` in the values `OS name` and `arch`:
31-
| OS name | arch |
30+
`OpenJCEPlus` and `OpenJCEPlusFIPS` providers are currently supported on the following architectures and operating system combinations as reported by `mvn --version` in the values `OS name` and `arch` or `family` in the case of windows:
31+
| OS name ( or family ) | arch |
3232
| ----------------------- | ----------- |
3333
| linux | aarch64 |
3434
| linux | amd64 |
3535
| linux | s390x |
3636
| linux | ppc64le |
37-
| Windows Server 2022 | amd64 |
37+
| Windows (family) | amd64 |
3838
| AIX | ppc64 |
3939
| Mac OS X | aarch64 |
4040
| Mac OS X | amd64 |

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@
119119
</properties>
120120
</profile>
121121
<profile>
122-
<id>Profile for Windows Server 2022 amd64</id>
122+
<id>Profile for Windows amd64</id>
123123
<activation>
124124
<os>
125-
<name>Windows Server 2022</name>
125+
<family>Windows</family>
126126
<arch>amd64</arch>
127127
</os>
128128
</activation>

0 commit comments

Comments
 (0)