Assignment 1
This commit is contained in:
parent
d4779c6a94
commit
bf616f6cc5
3
Assignment1/.idea/.gitignore
generated
vendored
Normal file
3
Assignment1/.idea/.gitignore
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
8
Assignment1/.idea/artifacts/Assignment1_jar.xml
generated
Normal file
8
Assignment1/.idea/artifacts/Assignment1_jar.xml
generated
Normal file
@ -0,0 +1,8 @@
|
||||
<component name="ArtifactManager">
|
||||
<artifact type="jar" name="Assignment1:jar">
|
||||
<output-path>$PROJECT_DIR$/out/artifacts/Assignment1_jar</output-path>
|
||||
<root id="archive" name="Assignment1.jar">
|
||||
<element id="module-output" name="Assignment1" />
|
||||
</root>
|
||||
</artifact>
|
||||
</component>
|
6
Assignment1/.idea/misc.xml
generated
Normal file
6
Assignment1/.idea/misc.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="18" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
8
Assignment1/.idea/modules.xml
generated
Normal file
8
Assignment1/.idea/modules.xml
generated
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/Assignment1.iml" filepath="$PROJECT_DIR$/Assignment1.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
Assignment1/.idea/vcs.xml
generated
Normal file
6
Assignment1/.idea/vcs.xml
generated
Normal 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>
|
11
Assignment1/Assignment1.iml
Normal file
11
Assignment1/Assignment1.iml
Normal file
@ -0,0 +1,11 @@
|
||||
<?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>
|
BIN
Assignment1/out/artifacts/Assignment1_jar/Assignment1.jar
Normal file
BIN
Assignment1/out/artifacts/Assignment1_jar/Assignment1.jar
Normal file
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: com.example.helloworld.HelloWorld
|
||||
|
Binary file not shown.
3
Assignment1/src/META-INF/MANIFEST.MF
Normal file
3
Assignment1/src/META-INF/MANIFEST.MF
Normal file
@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: com.example.helloworld.HelloWorld
|
||||
|
7
Assignment1/src/com/example/helloworld/HelloWorld.java
Normal file
7
Assignment1/src/com/example/helloworld/HelloWorld.java
Normal file
@ -0,0 +1,7 @@
|
||||
package com.example.helloworld;
|
||||
|
||||
public class HelloWorld {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user