File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed
src/main/java/com/ibrahimatay Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 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-25</artifactId >
13+
14+ <properties >
15+ <maven .compiler.source>25</maven .compiler.source>
16+ <maven .compiler.target>25</maven .compiler.target>
17+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18+ </properties >
19+
20+ </project >
Original file line number Diff line number Diff line change 1+ package com .ibrahimatay ;
2+
3+ //TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
4+ // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
5+ public class Main {
6+ static void main () {
7+ //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
8+ // to see how IntelliJ IDEA suggests fixing it.
9+ System .out .println (String .format ("Hello and welcome!" ));
10+
11+
12+ for (int i = 1 ; i <= 5 ; i ++) {
13+ System .out .println ("i = " + i );
14+ }
15+ }
16+ }
Original file line number Diff line number Diff line change 2121 <module >java-23</module >
2222 <module >java-14</module >
2323 <module >java-24</module >
24+ <module >java-25</module >
2425 </modules >
2526
2627 <properties >
You can’t perform that action at this time.
0 commit comments