diff options
Diffstat (limited to 'pacman/pom.xml')
| -rw-r--r-- | pacman/pom.xml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/pacman/pom.xml b/pacman/pom.xml new file mode 100644 index 0000000..f083890 --- /dev/null +++ b/pacman/pom.xml @@ -0,0 +1,59 @@ +<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/maven-v4_0_0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <groupId>com.gr15</groupId> + <artifactId>pacman</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <maven.compiler.source>17</maven.compiler.source> + <maven.compiler.target>17</maven.compiler.target> + <javafx.version>17.0.2</javafx.version> <!-- Centralized JavaFX version --> + </properties> + + <modules> + <module>model</module> + <module>view</module> + <module>controller</module> + </modules> + + <dependencies> + <!-- JavaFX Dependencies --> + <dependency> + <groupId>org.openjfx</groupId> + <artifactId>javafx-base</artifactId> + <version>${javafx.version}</version> + </dependency> + <dependency> + <groupId>org.openjfx</groupId> + <artifactId>javafx-controls</artifactId> + <version>${javafx.version}</version> + </dependency> + <dependency> + <groupId>org.openjfx</groupId> + <artifactId>javafx-graphics</artifactId> + <version>${javafx.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- Maven Compiler Plugin --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.10.1</version> + <configuration> + <source>${maven.compiler.source}</source> + <target>${maven.compiler.target}</target> + <release>${maven.compiler.target}</release> + </configuration> + </plugin> + </plugins> + </build> +</project> |