Commit 843564b3 by Patryk Czarnik

Utworzenie projektu P01-JavaSE

parent db02956b
# Maven target directory
/target/
# Eclipse configuration files
/.settings/
/.classpath
/.project
# IntelliJ configuration files
/.idea/
/*.iml
<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>net.patrykczarnik.java_examples</groupId>
<artifactId>P01-JavaSE</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Przykłady Java SE</name>
<description>Dla studentów kursów i szkoleń prowadzonych przez Patryka Czarnika</description>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
public class Hello {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment