Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Omholt Olsen authored and andreaoo committed Dec 30, 2025
0 parents commit 33086c1
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
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
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"vscjava.vscode-java-pack",
"bilalekrem.scenebuilderextension"
]
}
3 changes: 3 additions & 0 deletions README.md
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.
55 changes: 55 additions & 0 deletions pom.xml
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>
10 changes: 10 additions & 0 deletions src/main/java/module-info.java
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 added src/main/resources/.gitkeep
Empty file.
Empty file added src/test/java/.gitkeep
Empty file.

0 comments on commit 33086c1

Please sign in to comment.