|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.zynotic.studios</groupId> |
| 5 | + <artifactId>noor.calculator</artifactId> |
| 6 | + <version>0.0.1</version> |
| 7 | + <properties> |
| 8 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 9 | + <maven.compiler.source>11</maven.compiler.source> |
| 10 | + <maven.compiler.target>11</maven.compiler.target> |
| 11 | + </properties> |
| 12 | + <dependencies> |
| 13 | + <dependency> |
| 14 | + <groupId>org.openjfx</groupId> |
| 15 | + <artifactId>javafx-controls</artifactId> |
| 16 | + <version>21.0.3</version> |
| 17 | + </dependency> |
| 18 | + <dependency> |
| 19 | + <groupId>io.github.mkpaz</groupId> |
| 20 | + <artifactId>atlantafx-base</artifactId> |
| 21 | + <version>2.0.1</version> |
| 22 | + </dependency> |
| 23 | + </dependencies> |
| 24 | + <build> |
| 25 | + <plugins> |
| 26 | + <plugin> |
| 27 | + <groupId>org.apache.maven.plugins</groupId> |
| 28 | + <artifactId>maven-compiler-plugin</artifactId> |
| 29 | + <version>3.8.0</version> |
| 30 | + <configuration> |
| 31 | + <release>11</release> |
| 32 | + </configuration> |
| 33 | + </plugin> |
| 34 | + <plugin> |
| 35 | + <groupId>org.openjfx</groupId> |
| 36 | + <artifactId>javafx-maven-plugin</artifactId> |
| 37 | + <version>0.0.8</version> |
| 38 | + <executions> |
| 39 | + <execution> |
| 40 | + <!-- Default configuration for running --> |
| 41 | + <!-- Usage: mvn clean javafx:run --> |
| 42 | + <id>default-cli</id> |
| 43 | + <configuration> |
| 44 | + <mainClass>com.zynotic.studios.noor.calculator.App</mainClass> |
| 45 | + </configuration> |
| 46 | + </execution> |
| 47 | + <execution> |
| 48 | + <!-- Configuration for manual attach debugging --> |
| 49 | + <!-- Usage: mvn clean javafx:run@debug --> |
| 50 | + <id>debug</id> |
| 51 | + <configuration> |
| 52 | + <options> |
| 53 | + <option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000</option> |
| 54 | + </options> |
| 55 | + <mainClass>com.zynotic.studios.noor.calculator.App</mainClass> |
| 56 | + </configuration> |
| 57 | + </execution> |
| 58 | + <execution> |
| 59 | + <!-- Configuration for automatic IDE debugging --> |
| 60 | + <id>ide-debug</id> |
| 61 | + <configuration> |
| 62 | + <options> |
| 63 | + <option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option> |
| 64 | + </options> |
| 65 | + <mainClass>com.zynotic.studios.noor.calculator.App</mainClass> |
| 66 | + </configuration> |
| 67 | + </execution> |
| 68 | + </executions> |
| 69 | + </plugin> |
| 70 | + </plugins> |
| 71 | + <resources> |
| 72 | + <resource> |
| 73 | + <directory>src/main/resources</directory> |
| 74 | + <filtering>false</filtering> |
| 75 | + </resource> |
| 76 | + </resources> |
| 77 | + </build> |
| 78 | +</project> |
0 commit comments