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 9b7e5ad584b9588e65d22d05283763395d973dd6 Author: Andy Seaborne <[email protected]> AuthorDate: Tue Aug 13 16:18:11 2024 +0100 GH-2638: Configure jena-benchmark-jmh for annotation processing --- jena-benchmarks/jena-benchmarks-jmh/pom.xml | 6 ++++++ pom.xml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/jena-benchmarks/jena-benchmarks-jmh/pom.xml b/jena-benchmarks/jena-benchmarks-jmh/pom.xml index 6912dbb848..aa6277514b 100644 --- a/jena-benchmarks/jena-benchmarks-jmh/pom.xml +++ b/jena-benchmarks/jena-benchmarks-jmh/pom.xml @@ -118,6 +118,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release>${java.version}</release> + <compilerArgs> + <arg>-proc:full</arg> + </compilerArgs> + </configuration> </plugin> <plugin> diff --git a/pom.xml b/pom.xml index a0fce95acd..472140d888 100644 --- a/pom.xml +++ b/pom.xml @@ -179,8 +179,14 @@ It builds the modules shipped in apache-jena binaries but does not build these binaries. This profile does not build javadoc. + This profile does not check license headers. --> <id>dev</id> + + <properties> + <rat.skip>true</rat.skip> + </properties> + <modules> <module>jena-iri</module> <module>jena-base</module>
