From 7c3e37c0a397d95ed445e588de08f5084f69c587 Mon Sep 17 00:00:00 2001 From: Firas Bouzazi <firas.bouzazi@imt-atlantique.net> Date: Wed, 9 Oct 2024 15:58:14 +0200 Subject: [PATCH] 2nd commit --- pom.xml | 17 +++++++++++++++++ src/main/java/org/example/Main.java | 7 +++++++ 2 files changed, 24 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/example/Main.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..510dba5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ +<?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"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.example</groupId> + <artifactId>mapd_file_rouge</artifactId> + <version>1.0-SNAPSHOT</version> + + <properties> + <maven.compiler.source>11</maven.compiler.source> + <maven.compiler.target>11</maven.compiler.target> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + +</project> \ No newline at end of file diff --git a/src/main/java/org/example/Main.java b/src/main/java/org/example/Main.java new file mode 100644 index 0000000..407f157 --- /dev/null +++ b/src/main/java/org/example/Main.java @@ -0,0 +1,7 @@ +package org.example; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file -- GitLab