about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/2/README.md
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 10:34:58 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:00:00 +0700
commit67393f42f41ab92219deb549f711121c4dab845b (patch)
treeebd0eb6c8a3d3bd69937312179aeaf273ea29c80 /usth/ICT2.2/labwork/2/README.md
parentb38d9929f7a015b56b847fde7e83f814f354497e (diff)
downloadcp-67393f42f41ab92219deb549f711121c4dab845b.tar.gz
[usth/ICT2.2] Object Oriented Programming
Diffstat (limited to 'usth/ICT2.2/labwork/2/README.md')
-rw-r--r--usth/ICT2.2/labwork/2/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/2/README.md b/usth/ICT2.2/labwork/2/README.md
new file mode 100644
index 0000000..a81631e
--- /dev/null
+++ b/usth/ICT2.2/labwork/2/README.md
@@ -0,0 +1,18 @@
+# Build with Maven
+
+Following the official guide [Maven in 5 Minutes](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html):
+
+1. Create a project named `my-app`:
+
+        mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 -DinteractiveMode=false
+
+2. Change into the project directory: `cd my-app`
+3. Build the project: `mvn package`
+
+Extra exercises for labwork 1 are written in `src/main/java/com/mycompany/app/`
+inside `my-app`.  To launch a class named `App` for example, run
+
+    java -cp my-app/target/my-app-1.0-SNAPSHOT.jar com.mycompany.app.App
+
+I find this build method to be overcomplicated for 5-minute throw-away programs
+and decide not to use it in the upcoming labworks.