diff --git a/pom.xml b/pom.xml
index 71d7dcdae494a4c9b516d2c4d47615cf352d5409..0c6de797bc112bd4fe0616e8d74cb72916d58622 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>cz.vsb.fei.java2</groupId>
 	<artifactId>javafx-quickstart</artifactId>
-	<version>1.0.9</version>
+	<version>1.0.10</version>
 	<packaging>maven-archetype</packaging>
 
 	<build>
diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml
index 270998733a1e486f78fdf64641cd6eb72c61abf4..9f1f4ccdc3321a8769ca2ccbc703e04b39df5f0e 100644
--- a/src/main/resources/archetype-resources/pom.xml
+++ b/src/main/resources/archetype-resources/pom.xml
@@ -66,6 +66,20 @@
 
 	<build>
 		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>3.12.1</version>
+				<configuration>
+					<annotationProcessorPaths>
+						<path>
+							<groupId>org.projectlombok</groupId>
+							<artifactId>lombok</artifactId>
+							<version>${lombok.version}</version>
+						</path>
+					</annotationProcessorPaths>
+				</configuration>
+			</plugin>
 			<plugin>
 				<artifactId>maven-surefire-plugin</artifactId>
 				<version>3.2.1</version>