Skip to content

Commit

Permalink
Merge pull request #184 from apache/update_pom_files_for_8_and_11
Browse files Browse the repository at this point in the history
updates to POM files
  • Loading branch information
leerho authored May 19, 2024
2 parents d47273d + cec4ea6 commit 22169e6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
15 changes: 14 additions & 1 deletion datasketches-memory-java11/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.datasketches</groupId>
<artifactId>datasketches-memory</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>datasketches-memory-java11</artifactId>
Expand All @@ -40,6 +40,11 @@
</properties>

<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/javadoc</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
Expand All @@ -55,6 +60,14 @@
<compilerArgs>
<arg>--add-exports</arg>
<arg>java.base/jdk.internal.ref=org.apache.datasketches.memory</arg>
<arg>--add-exports</arg>
<arg>java.base/jdk.internal.misc=org.apache.datasketches.memory</arg>
<arg>--add-exports</arg>
<arg>java.base/sun.nio.ch=org.apache.datasketches.memory</arg>
<arg>--add-opens</arg>
<arg>java.base/sun.nio.ch=org.apache.datasketches.memory</arg>
<arg>--add-opens</arg>
<arg>java.base/java.nio=org.apache.datasketches.memory</arg>
</compilerArgs>
</configuration>
</plugin>
Expand Down
7 changes: 6 additions & 1 deletion datasketches-memory-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.datasketches</groupId>
<artifactId>datasketches-memory</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</parent>

<artifactId>datasketches-memory-java8</artifactId>
Expand Down Expand Up @@ -62,6 +62,11 @@
</dependencies>

<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/javadoc</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ under the License.

<groupId>org.apache.datasketches</groupId>
<artifactId>datasketches-memory</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
<!-- Required for multi-module project -->
<packaging>pom</packaging>

Expand Down

0 comments on commit 22169e6

Please sign in to comment.