Skip to content

Commit da15626

Browse files
committed
java pom fixed
1 parent e0e7ea5 commit da15626

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This repository contains Java examples that are designed to track and document t
99

1010
## Specifications & Practices
1111

12+
* [Java 24](java-24/) (March, 2025)
13+
1214
* [Java 23](java-23/) (September, 2024)
1315
* [JEP 455](java-23/src/main/java/com/ibrahimatay/JEP455PrimitiveTypesInPatternsInstanceofAndSwitch.java): Primitive Types in Patterns, instanceof, and switch
1416
* [JEP 467](java-23/src/main/java/com/ibrahimatay/JEP467MarkdownDocumentationComments.java): Markdown Documentation Comments

java-24/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.ibrahimatay</groupId>
8+
<artifactId>Java-Features</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>java-24</artifactId>
13+
14+
<properties>
15+
<maven.compiler.source>24</maven.compiler.source>
16+
<maven.compiler.target>24</maven.compiler.target>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
</properties>
19+
20+
</project>

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
<packaging>pom</packaging>
1010
<version>1.0-SNAPSHOT</version>
1111
<modules>
12-
<module>java-5</module>
13-
<module>java-6</module>
14-
<module>java-7</module>
1512
<module>java-8</module>
1613
<module>java-9</module>
1714
<module>java-10</module>
@@ -23,6 +20,7 @@
2320
<module>java-12</module>
2421
<module>java-23</module>
2522
<module>java-14</module>
23+
<module>java-24</module>
2624
</modules>
2725

2826
<properties>

0 commit comments

Comments
 (0)