changeset 0:aff4ff476798

First commit
author Hiroyuki Tamae <e165759@ie.u-ryukyu.ac.jp>
date Sun, 05 Nov 2017 16:12:22 +0900
parents
children 8efe825340e8
files .idea/vcs.xml build.gradle src/main/java/jp/ac/uryukyu/ie/e165759/FileWrite.java
diffstat 3 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.idea/vcs.xml	Sun Nov 05 16:12:22 2017 +0900
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="hg4idea" />
+  </component>
+</project>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/build.gradle	Sun Nov 05 16:12:22 2017 +0900
@@ -0,0 +1,14 @@
+group 'FileWrite'
+version '1.0-SNAPSHOT'
+
+apply plugin: 'java'
+
+sourceCompatibility = 1.8
+
+repositories {
+    mavenCentral()
+}
+
+dependencies {
+    testCompile group: 'junit', name: 'junit', version: '4.12'
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/jp/ac/uryukyu/ie/e165759/FileWrite.java	Sun Nov 05 16:12:22 2017 +0900
@@ -0,0 +1,7 @@
+package jp.ac.uryukyu.ie.e165759;
+
+public class FileWrite {
+    public static void main(String args[]){
+        System.out.println("test");
+    }
+}