| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| https://maven.apache.org/maven-v4_0_0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.datasketches</groupId> |
| <artifactId>datasketches-characterization</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>datasketches-characterization-java-twenty-five</artifactId> |
| <packaging>jar</packaging> |
| |
| <name>${project.artifactId}</name> |
| <description>Characterization code for the DataSketches library. (Java 25)</description> |
| |
| <properties> |
| <datasketches-java.version>9.0.0</datasketches-java.version> |
| |
| <testng.version>7.11.0</testng.version> |
| |
| <java.version>25</java.version> |
| <!-- commented out to allow building all submodules from parent pom with any of java 8, 11, 17, 21, 25 |
| <java.version.range>[25,)</java.version.range> |
| --> |
| <maven.compiler.release>25</maven.compiler.release> |
| <maven.javadoc.skip>true</maven.javadoc.skip> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.datasketches</groupId> |
| <artifactId>datasketches-java</artifactId> |
| <version>${datasketches-java.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| <version>${testng.version}</version> |
| <!-- <scope>test</scope> remove so we can run from main --> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.datasketches</groupId> |
| <artifactId>datasketches-java</artifactId> |
| <version>${datasketches-java.version}</version> |
| <type>test-jar</type> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-toolchains-plugin</artifactId> |
| <configuration> |
| <toolchains> |
| <jdk> |
| <version>${java.version}</version> |
| </jdk> |
| </toolchains> |
| </configuration> |
| </plugin> |
| |
| <!-- |
| Rat licence checks disabled here because they are handled by parent pom. |
| This avoids the need to configure exclusions redundantly at each level. |
| --> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>add-source-generated</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${project.build.directory}/generated-sources/java-base</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| </build> |
| </project> |