-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
29 lines (25 loc) · 1.2 KB
/
pom.xml
File metadata and controls
29 lines (25 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>
<groupId>com.tunisch</groupId>
<artifactId>java-lessons</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<!--
1. Java versiyonunu stabil bir LTS (Uzun Süreli Destek) versiyonu olan 17'ye çekiyoruz.
2. Projenin farklı sistemlerde karakter sorunu yaşamaması için UTF-8 ekliyoruz.
-->
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--
Kodunu test etmek için en popüler kütüphane olan JUnit 5'i ekliyoruz.
'scope>test' etiketi, bu kütüphanenin sadece test kodları çalıştırılırken kullanılacağını,
ana program paketlenirken dahil edilmeyeceğini belirtir. Bu, en iyi pratiktir.
-->
</dependencies>
</project>