Skip to content

Commit

Permalink
feat: add java-21 EEA module
Browse files Browse the repository at this point in the history
Signed-off-by: sebthom <sebthom@users.noreply.github.com>
  • Loading branch information
sebthom authored and vorburger committed Sep 30, 2024
1 parent f4eab48 commit 3801c19
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
4 changes: 4 additions & 0 deletions libraries/java-21/eea-generator.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
packages.include=java,javax,org.w3c.dom,org.xml.sax

; apply EEA annotations from java-17 project on -Deea-generator.action=generate
input.dirs.extra=../java-17/src/main/resources
25 changes: 25 additions & 0 deletions libraries/java-21/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.lastnpe.eea</groupId>
<artifactId>eea-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>java-21-eea</artifactId>
<name>EEA :: Java 21</name>

<!-- Do NOT use a <version> of the JAR for which this is an EEA here,
but version the EEA itself. Put the version of the lib into
the EEA's name, if at all.-->

<properties>
<java.version>21</java.version>
</properties>

</project>
3 changes: 2 additions & 1 deletion libraries/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -24,6 +24,7 @@

<modules>
<module>java-17</module>
<module>java-21</module>
<module>gson-2</module>
<module>guava</module>
<module>jakarta-mail-api-2</module>
Expand Down

0 comments on commit 3801c19

Please sign in to comment.