From 1ae2ebf3343a36bc7913614e51cfe50304b24bb4 Mon Sep 17 00:00:00 2001 From: Daan Sneep Date: Mon, 18 Feb 2019 14:16:23 +0100 Subject: [PATCH 1/6] This is a small test to make sure everyone can access this project --- .../.idea/encodings.xml | 4 + .../.idea/misc.xml | 6 + .../.idea/modules.xml | 8 + .../.idea/workspace.xml | 141 ++++++++++++++++++ .../OOPP 43 In the beginning there was_.iml | 11 ++ .../src/Main.java | 5 + 6 files changed, 175 insertions(+) create mode 100644 OOPP 43 In the beginning there was_/.idea/encodings.xml create mode 100644 OOPP 43 In the beginning there was_/.idea/misc.xml create mode 100644 OOPP 43 In the beginning there was_/.idea/modules.xml create mode 100644 OOPP 43 In the beginning there was_/.idea/workspace.xml create mode 100644 OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml create mode 100644 OOPP 43 In the beginning there was_/src/Main.java diff --git a/OOPP 43 In the beginning there was_/.idea/encodings.xml b/OOPP 43 In the beginning there was_/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/OOPP 43 In the beginning there was_/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/.idea/misc.xml b/OOPP 43 In the beginning there was_/.idea/misc.xml new file mode 100644 index 0000000..bfbb0ff --- /dev/null +++ b/OOPP 43 In the beginning there was_/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/.idea/modules.xml b/OOPP 43 In the beginning there was_/.idea/modules.xml new file mode 100644 index 0000000..1a37cd5 --- /dev/null +++ b/OOPP 43 In the beginning there was_/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/.idea/workspace.xml b/OOPP 43 In the beginning there was_/.idea/workspace.xml new file mode 100644 index 0000000..4025774 --- /dev/null +++ b/OOPP 43 In the beginning there was_/.idea/workspace.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - + - - - - - - + - - - + + + + + @@ -115,24 +124,27 @@ - - - - - + + + + + + + + - - + + - + From 3cd673b59e028bd8a157479dcddf910a27c48772 Mon Sep 17 00:00:00 2001 From: Daan Sneep Date: Mon, 18 Feb 2019 14:27:56 +0100 Subject: [PATCH 3/6] Additional XML files --- .../.idea/workspace.xml | 16 +++++++++++++++- .../Main.class | Bin 0 -> 514 bytes 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class diff --git a/OOPP 43 In the beginning there was_/.idea/workspace.xml b/OOPP 43 In the beginning there was_/.idea/workspace.xml index be90f8b..d45d0f0 100644 --- a/OOPP 43 In the beginning there was_/.idea/workspace.xml +++ b/OOPP 43 In the beginning there was_/.idea/workspace.xml @@ -78,7 +78,7 @@ - + @@ -93,6 +93,20 @@ + + + + + + + + + diff --git a/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class b/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class new file mode 100644 index 0000000000000000000000000000000000000000..b719d34eb4828326dd75056ff1987282ff09f047 GIT binary patch literal 514 zcmZuuO;5r=5Pb`U(pm+n;J1P&^k8p#z<4n+9_mMe!GotQY+y;-HKmyNv-F^e2Y-M+ z$~aq0kc2(V?7VsNW@h*M=kp7|2@Y%&v1Xx$dI{?`Hn3@8%fvQA@l3`tJ!iF`-18tLr0T0454${(I{pKVbSTH9;a_tZx2ZZJ&rokY`Xm0#y^zNP zuahP+9<(!co(zcZE=V)j9W_aM;!^5%mR3C0A`VQHOzb$=#U6umCBjfO9#j(cnC ahcOedDFx)IkMU2$LItaY(|3{0!Tkkj2WAog literal 0 HcmV?d00001 From fd350cf9bb865c4ec20621e944ed2c9343926051 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Mon, 18 Feb 2019 16:20:46 +0100 Subject: [PATCH 4/6] Added javafx part to main client test, instructions are in comments in the code --- .classpath | 3 +- .vscode/launch.json | 11 ++++ .../src/Main.java | 55 +++++++++++++++++++ 3 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.classpath b/.classpath index 5e8a55f..2112843 100644 --- a/.classpath +++ b/.classpath @@ -8,9 +8,9 @@ + - @@ -23,5 +23,6 @@ + diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..1d433ce --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "type": "java", + "name": "CodeLens (Launch) - Main", + "request": "launch", + "mainClass": "Main", + "projectName": "OOP-Project" + } + ] +} \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/src/Main.java b/OOPP 43 In the beginning there was_/src/Main.java index e1704db..6f1149b 100644 --- a/OOPP 43 In the beginning there was_/src/Main.java +++ b/OOPP 43 In the beginning there was_/src/Main.java @@ -1,5 +1,60 @@ +import javafx.application.Application; +import javafx.event.ActionEvent; +import javafx.event.EventHandler; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.layout.StackPane; +import javafx.stage.Stage; + +//MAIN CLIENT + public class Main { public static void main(String[] args){ + System.out.print("Hello World!"); } } + +//COMMENT THE "MAIN CLIENT" PART OUT AND UNCOMMENT THE "JAVAFX" PART TO TEST IF JAVAFX WORKS +//Don't uncomment the imports pls :) + +//JAVAFX + +//public class Main extends Application { +// +// @Override +// public void start(Stage primaryStage) { +// Button btn = new Button(); +// btn.setText("Say 'Hello World'"); +// btn.setOnAction(new EventHandler() { +// +// @Override +// public void handle(ActionEvent event) { +// System.out.println("Hello World!"); +// } +// }); +// +// Button btn2 = new Button(); +// btn2.setText("Say something else!"); +// btn2.setOnAction(new EventHandler() { +// @Override +// public void handle(ActionEvent event) { +// System.out.println("something else!"); +// } +// }); +// +// StackPane root = new StackPane(); +// //apparently root.getchildren.add does the same as document.ready in javascript +// root.getChildren().add(btn); +// +// Scene scene = new Scene(root, 500, 250); +// +// primaryStage.setTitle("Hello World!"); +// primaryStage.setScene(scene); +// primaryStage.show(); +// } +// +// public static void main(String[] args) { +// launch(args); +// } +//} From e466033b10d0d66040e831f3c0df6e2674610b15 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Mon, 18 Feb 2019 16:33:17 +0100 Subject: [PATCH 5/6] updated gitignore file with gitignore.io. commented out the part that was already there --- .gitignore | 205 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 202 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 69a5d6b..53511ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,192 @@ -# Maven ignores +# # Maven ignores +# target/ +# pom.xml.tag +# pom.xml.releaseBackup +# pom.xml.versionsBackup +# pom.xml.next +# release.properties +# dependency-reduced-pom.xml +# buildNumber.properties +# .mvn/timing.properties + +# # Exclude maven wrapper +# !/.mvn/wrapper/maven-wrapper.jar + + + + +# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode +# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,intellij,visualstudiocode + +### Eclipse ### + +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# CDT- autotools +.autotools + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + +# Annotation Processing +.apt_generated/ + +# Scala IDE specific (Scala & Java development for Eclipse) +.cache-main +.scala_dependencies +.worksheet + +### Eclipse Patch ### +# Eclipse Core +.project + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Annotation Processing +.apt_generated + +.sts4-cache/ + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/** + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# 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/modules.xml +# .idea/*.iml +# .idea/modules + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +.idea/sonarlint + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +### Maven ### target/ pom.xml.tag pom.xml.releaseBackup @@ -8,6 +196,17 @@ release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties +.mvn/wrapper/maven-wrapper.jar -# Exclude maven wrapper -!/.mvn/wrapper/maven-wrapper.jar +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history + +# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode \ No newline at end of file From 890dd979fcfa0957013a89db81e477f7ea2c5fae Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Wed, 20 Feb 2019 22:53:13 +0100 Subject: [PATCH 6/6] Added agenda for meeting 2 (25 feb) --- .classpath | 3 +- .settings/org.eclipse.jdt.core.prefs | 100 +++++++++++++++++- OOP-Project.iml | 16 +++ .../src/Main.java | 2 +- doc/meetings/20190225_agenda.md | 58 ++++++++++ src/main/main.iml | 11 ++ src/test/test.iml | 11 ++ 7 files changed, 198 insertions(+), 3 deletions(-) create mode 100644 OOP-Project.iml create mode 100644 doc/meetings/20190225_agenda.md create mode 100644 src/main/main.iml create mode 100644 src/test/test.iml diff --git a/.classpath b/.classpath index 2112843..dede2a3 100644 --- a/.classpath +++ b/.classpath @@ -13,7 +13,8 @@ - + + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index 5592a0a..b3e79c9 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,105 @@ eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled +org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore +org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull +org.eclipse.jdt.core.compiler.annotation.nonnull.secondary= +org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault +org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary= +org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable +org.eclipse.jdt.core.compiler.annotation.nullable.secondary= +org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 org.eclipse.jdt.core.compiler.compliance=1.8 -org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.APILeak=warning +org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning +org.eclipse.jdt.core.compiler.problem.autoboxing=ignore +org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning +org.eclipse.jdt.core.compiler.problem.deadCode=warning +org.eclipse.jdt.core.compiler.problem.deprecation=warning +org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled +org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled +org.eclipse.jdt.core.compiler.problem.discouragedReference=warning +org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore +org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore +org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore +org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled +org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore +org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning +org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning +org.eclipse.jdt.core.compiler.problem.forbiddenReference=info +org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning +org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled +org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning +org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning +org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore +org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore +org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning +org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore +org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore +org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled +org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore +org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore +org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled +org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning +org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore +org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning +org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning +org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore +org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning +org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning +org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error +org.eclipse.jdt.core.compiler.problem.nullReference=warning +org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error +org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning +org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning +org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore +org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning +org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore +org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore +org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore +org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning +org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning +org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore +org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore +org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore +org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore +org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore +org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled +org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning +org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled +org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled +org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled +org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore +org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning +org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning +org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled +org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning +org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning +org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore +org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning +org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning +org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled +org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info +org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore +org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore +org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore +org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore +org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled +org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled +org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled +org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore +org.eclipse.jdt.core.compiler.problem.unusedImport=warning +org.eclipse.jdt.core.compiler.problem.unusedLabel=warning +org.eclipse.jdt.core.compiler.problem.unusedLocal=warning +org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore +org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore +org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled +org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled +org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled +org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning +org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore +org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning +org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning org.eclipse.jdt.core.compiler.processAnnotations=disabled org.eclipse.jdt.core.compiler.release=disabled org.eclipse.jdt.core.compiler.source=1.8 diff --git a/OOP-Project.iml b/OOP-Project.iml new file mode 100644 index 0000000..0f21b76 --- /dev/null +++ b/OOP-Project.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OOPP 43 In the beginning there was_/src/Main.java b/OOPP 43 In the beginning there was_/src/Main.java index 6f1149b..d77de4e 100644 --- a/OOPP 43 In the beginning there was_/src/Main.java +++ b/OOPP 43 In the beginning there was_/src/Main.java @@ -11,7 +11,7 @@ import javafx.stage.Stage; public class Main { public static void main(String[] args){ - System.out.print("Hello World!"); + System.out.println("Hello World!"); } } diff --git a/doc/meetings/20190225_agenda.md b/doc/meetings/20190225_agenda.md new file mode 100644 index 0000000..cc1c537 --- /dev/null +++ b/doc/meetings/20190225_agenda.md @@ -0,0 +1,58 @@ +# Meeting 2 + +## Opening +> Check if everyone is present: +- [ ] Nivard Jansen +- [ ] Kristin Peneva +- [ ] Daan Sneep +- [ ] Merel SteenBergen +- [ ] Ceren Uğurlu +- [ ] Mika Wauben +- [ ] Sem van der Hoeven + +## Points of action + + - First of all, discuss problems we have faced and if somebody is halted because of a problem + - if so, try to work out the problem + +### pre/during meeting + - Discuss what we learned this week + - what did we find online? + - what did we get to know from tutorials we followed? + - are there still things unclear? + - Gitlab + - Issues: everyone should know how they work and how to work with them + - board: use it as a scrum board + - Demo 1 + - Make sure client is working + - Make sure server is working + - Make sure client and server can connect + - client can send requests + - server can send respones + - Everyone needs to know about the libraries and API we've come across and are going to use + - Maven + - JavaFX + - Jersey + - Tomcat + - Everyone also should install everything if they haven't done so yet + - [Maven install tutorial](https://docs.wso2.com/display/IS323/Installing+Apache+Maven+on+Windows) + - [Tomcat install tutorial](http://openl-tablets.org/files/openl-tablets/5.13.0/OpenL%20Tablets%20-%20Installation%20Guide/SMPUserInstallingApacheTomcatOnWindows.html) + +### post meeting + - Focus on demo 2 + - Get started with the GUI + - Get started on configuring the server + - Brushing up on JSON and implementing it in the client-server communication + + +## Any other business +> If anybody has something that should be discussed but came up with that after the agenda was finalized, he/she should bring that up now so that it can be discussed after all. + +## Question round +- Questions for the TA + - questions that were already present + - questions that rose during the meeting + +## Closing +> Demo 1 is done, good job guys! +> Let's focus on demo 2! \ No newline at end of file diff --git a/src/main/main.iml b/src/main/main.iml new file mode 100644 index 0000000..908ad4f --- /dev/null +++ b/src/main/main.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/test.iml b/src/test/test.iml new file mode 100644 index 0000000..a0e49a3 --- /dev/null +++ b/src/test/test.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file