From 45a88ea93b13e573a8245c0bf01d9e8109bcf952 Mon Sep 17 00:00:00 2001 From: Fatih20 <fnri39@protonmail.com> Date: Sat, 21 Oct 2023 17:55:56 +0700 Subject: [PATCH] Proper initialization of Maven project. --- .idea/misc.xml | 3 +-- pom.xml | 7 ++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 117a668..8691194 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ -<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="MavenProjectsManager"> @@ -8,7 +7,7 @@ </list> </option> </component> - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="corretto-17" project-jdk-type="JavaSDK"> + <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="corretto-11" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project> \ No newline at end of file diff --git a/pom.xml b/pom.xml index c4a9331..8c58d05 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,13 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.example</groupId> - <artifactId>jax-ws</artifactId> + <artifactId>jax-ws-2</artifactId> <version>1.0-SNAPSHOT</version> <properties> - <maven.compiler.source>17</maven.compiler.source> - <maven.compiler.target>17</maven.compiler.target> + <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 -- GitLab