From cdfe600ffb225ab51e648dcd9cb8f9a37f5b7bf5 Mon Sep 17 00:00:00 2001 From: Joerg Bolay <joerg.bolay@dataport.de> Date: Fri, 7 Jun 2024 08:17:58 +0200 Subject: [PATCH] =?UTF-8?q?OZG-5891=20pom.xml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 14 ++++++++++++++ pom.xml | 17 +++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1a5d4e4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +target/ +.classpath +.project +.settings + +# IDE +.settings/ +.idea +*.iws +*.iml +*.ipr + +.attach** +.factorypath \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..95f8b3d --- /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>de.ozgcloud.xta</groupId> + <artifactId>xta-client-lib</artifactId> + <version>0.1.0-SNAPSHOT</version> + + <properties> + <maven.compiler.source>21</maven.compiler.source> + <maven.compiler.target>21</maven.compiler.target> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + +</project> \ No newline at end of file -- GitLab