diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b00d13 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Idea subfolder +.idea/ + +# File-based project format +*.iws + +# IntelliJ +out/ + +# Maven +target/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4ef0410 --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + wtf.beatrice.nounspicker + NounsPicker + 1.0-SNAPSHOT + + + 16 + 16 + UTF-8 + + + \ No newline at end of file diff --git a/src/main/java/wtf/beatrice/nounspicker/Main.java b/src/main/java/wtf/beatrice/nounspicker/Main.java new file mode 100644 index 0000000..b502dbe --- /dev/null +++ b/src/main/java/wtf/beatrice/nounspicker/Main.java @@ -0,0 +1,9 @@ +package wtf.beatrice.nounspicker; + +public class Main +{ + public static void main(String[] args) + { + System.out.println("Hello world!"); + } +} \ No newline at end of file