-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 33086c1
Showing
7 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # output folders | ||
| bin/ | ||
| target/ | ||
| /.metadata/ | ||
| .idea/ | ||
| .DS_Store | ||
|
|
||
| # temporary generated files | ||
| *.xtendbin | ||
| *._trace | ||
|
|
||
| .settings/ | ||
|
|
||
| out/ | ||
|
|
||
| # JDT-specific (Eclipse Java Development Tools) | ||
| # .classpath | ||
|
|
||
| # Include directories for initial commit | ||
| src/main/resources/* | ||
| !src/main/resources/.gitkeep | ||
|
|
||
| src/test/java/* | ||
| !src/test/java/.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "recommendations": [ | ||
| "vscjava.vscode-java-pack", | ||
| "bilalekrem.scenebuilderextension" | ||
| ] | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Øvingstekster | ||
|
|
||
| Denne mappen inneholder øvingstekster for TDT4100 - Objektorientert programmering våren 2026. Tabellen under inneholder linker til hver enkelt oppgavetekst og tema for øvingen. Lenker vil bli oppdatert underveis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <groupId>tdt4100-fagstab</groupId> | ||
| <artifactId>ovinger</artifactId> | ||
| <version>2026</version> | ||
|
|
||
| <properties> | ||
| <maven.compiler.source>25</maven.compiler.source> | ||
| <maven.compiler.target>25</maven.compiler.target> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.openjfx</groupId> | ||
| <artifactId>javafx-fxml</artifactId> | ||
| <version>25</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.junit.jupiter</groupId> | ||
| <artifactId>junit-jupiter</artifactId> | ||
| <version>6.0.1</version> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.14.1</version> | ||
| <configuration> | ||
| <release>25</release> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-surefire-plugin</artifactId> | ||
| <version>3.5.4</version> | ||
| <configuration> | ||
| <argLine>--enable-preview</argLine> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-clean-plugin</artifactId> | ||
| <version>3.5.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-install-plugin</artifactId> | ||
| <version>3.1.4</version> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| /** | ||
| * @author hal | ||
| * | ||
| */ | ||
| open module ovinger { | ||
| requires javafx.base; | ||
| requires javafx.controls; | ||
| requires javafx.fxml; | ||
| requires javafx.graphics; | ||
| } |
Empty file.
Empty file.