Browse Source

git init

christoph
MrTob 4 years ago
commit
604bb2a9ac
8 changed files with 53 additions and 0 deletions
  1. +1
    -0
      .idea/description.html
  2. +6
    -0
      .idea/encodings.xml
  3. +9
    -0
      .idea/misc.xml
  4. +8
    -0
      .idea/modules.xml
  5. +3
    -0
      .idea/project-template.xml
  6. +6
    -0
      .idea/vcs.xml
  7. +12
    -0
      MessStation.iml
  8. +8
    -0
      src/xyz/nextn/Main.java

+ 1
- 0
.idea/description.html View File

@@ -0,0 +1 @@
<html>Simple <b>Java</b> application that includes a class with <code>main()</code> method</html>

+ 6
- 0
.idea/encodings.xml View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="PROJECT" charset="UTF-8" />
</component>
</project>

+ 9
- 0
.idea/misc.xml View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectKey">
<option name="state" value="project://e2804f05-5315-4fc6-a121-c522a6c26470" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

+ 8
- 0
.idea/modules.xml View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/MessStation.iml" filepath="$PROJECT_DIR$/MessStation.iml" />
</modules>
</component>
</project>

+ 3
- 0
.idea/project-template.xml View File

@@ -0,0 +1,3 @@
<template>
<input-field default="com.company">IJ_BASE_PACKAGE</input-field>
</template>

+ 6
- 0
.idea/vcs.xml View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

+ 12
- 0
MessStation.iml View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>


+ 8
- 0
src/xyz/nextn/Main.java View File

@@ -0,0 +1,8 @@
package xyz.nextn;

public class Main {

public static void main(String[] args) {
// write your code here
}
}

Loading…
Cancel
Save