Skip to content

Commit

Permalink
Add initial POM file
Browse files Browse the repository at this point in the history
  • Loading branch information
nikist97 committed Jun 27, 2022
1 parent 9b6f237 commit 36c4d11
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
@@ -0,0 +1,31 @@
<?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>

<!-- Project Information -->
<groupId>com.github.nikist97</groupId>
<artifactId>TaskManagementService</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>TaskManagementService</name>

<properties>
<!-- Maven-related properties used during the build process -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<dependencies>
<!-- This is where we will declare libraries our project depends on -->
</dependencies>

<build>
<plugins>
<!-- This is where we will declare plugins our project needs for the build process -->
</plugins>
</build>
</project>

0 comments on commit 36c4d11

Please sign in to comment.