This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit c58b1cb5cd6077963f515454c990311c763d284a Author: Øyvind Gjesdal <[email protected]> AuthorDate: Thu Oct 17 22:46:40 2024 +0200 GH-2533: Add argLine properties for jena-text for handling warnings during tests --- jena-text/pom.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/jena-text/pom.xml b/jena-text/pom.xml index 1382fabe7a..f389fc9153 100644 --- a/jena-text/pom.xml +++ b/jena-text/pom.xml @@ -27,8 +27,20 @@ <artifactId>jena</artifactId> <version>5.3.0-SNAPSHOT</version> </parent> - + <profiles> + <!-- apache lucene emits warnings for native access and for the vector module for java version >= 21 --> + <profile><id>enable-native-and-incubator-vector</id> + <activation> + <jdk>[21,22,23]</jdk> + </activation> + <properties> + <jena.text.test.argLine>--enable-native-access=ALL-UNNAMED --add-modules jdk.incubator.vector</jena.text.test.argLine> + </properties> + </profile> + </profiles> <properties> + <jena.text.test.argLine></jena.text.test.argLine> + <argLine></argLine> <automatic.module.name>org.apache.jena.text</automatic.module.name> </properties> @@ -122,6 +134,7 @@ <includes> <include>**/TS_*.java</include> </includes> + <argLine>@{argLine} ${jena.text.test.argLine}</argLine> </configuration> </plugin>
