diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..609ab0ef3645dbcea5506c5c2cae3457b0ae8e66
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,24 @@
+<?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>tute1</artifactId>
+    <version>1.0-SNAPSHOT</version>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.8.0</version>
+                <configuration>
+                    <release>14</release>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/src/main/java/pack1/class1.java b/src/main/java/pack1/class1.java
new file mode 100644
index 0000000000000000000000000000000000000000..b1e76ec19ffd18c1d3b9bdd33d6b8b29da7721cc
--- /dev/null
+++ b/src/main/java/pack1/class1.java
@@ -0,0 +1,10 @@
+package pack1;
+
+public class class1 {
+    public static void main(String args[]){
+
+        System.out.println("Hello World, Maven");
+
+
+    }
+}
diff --git a/target/classes/pack1/class1.class b/target/classes/pack1/class1.class
new file mode 100644
index 0000000000000000000000000000000000000000..816bb4365f9e2396f23c4d5ed9e3c192493bd151
Binary files /dev/null and b/target/classes/pack1/class1.class differ
diff --git a/tute1.iml b/tute1.iml
new file mode 100644
index 0000000000000000000000000000000000000000..78b2cc53b203f0b97534bb1184cdc7b474339fb4
--- /dev/null
+++ b/tute1.iml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="JAVA_MODULE" version="4" />
\ No newline at end of file