diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5231862 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea +*.iml +target diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..fa08ff0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,92 @@ + + + + 4.0.0 + + com.github.khalidzahra + TopologyAPI + 1.0-SNAPSHOT + + TopologyAPI + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + + junit + junit + 4.11 + test + + + + com.google.code.gson + gson + 2.8.8 + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 16 + 16 + + + + + diff --git a/src/main/java/com/github/khalidzahra/Main.java b/src/main/java/com/github/khalidzahra/Main.java new file mode 100644 index 0000000..10e411f --- /dev/null +++ b/src/main/java/com/github/khalidzahra/Main.java @@ -0,0 +1,7 @@ +package com.github.khalidzahra; + +public class Main { + public static void main(String[] args) { + + } +}