diff --git a/pom.xml b/pom.xml
index 36e736a0948f7358b094f28d99c6c02c72b14bb3..2b9412c35866a10aa29d27c6cbf60fa2171344f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,25 +3,15 @@
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>cz.jezek</groupId>
-	<artifactId>lab09-efrei</artifactId>
+	<artifactId>lab09</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
 	<packaging>jar</packaging>
 	<properties>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-		<maven.compiler.source>11</maven.compiler.source>
-		<maven.compiler.target>11</maven.compiler.target>
+		<maven.compiler.source>17</maven.compiler.source>
+		<maven.compiler.target>17</maven.compiler.target>
 	</properties>
 	<dependencies>
-		<dependency>
-			<groupId>org.openjfx</groupId>
-			<artifactId>javafx-controls</artifactId>
-			<version>11</version>
-		</dependency>
-		<dependency>
-			<groupId>org.openjfx</groupId>
-			<artifactId>javafx-fxml</artifactId>
-			<version>11</version>
-		</dependency>
 		<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
 		<dependency>
 			<groupId>org.junit.jupiter</groupId>
diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java
index edc025f5dc65bfa61c4deb40bcd470bf1e29c538..35757404f5d12da2642d679d3eb1b4ce681e75da 100644
--- a/src/main/java/module-info.java
+++ b/src/main/java/module-info.java
@@ -1,6 +1,4 @@
 module cz.jezek.lab10 {
-    requires transitive javafx.controls;
-    requires javafx.fxml;
     opens cz.jezek.lab11 to javafx.fxml;
     exports cz.jezek.lab11;
 }
\ No newline at end of file