You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.8 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.jesuspinar</groupId>
  7. <artifactId>miObjeto</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>miObjeto</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <junit.version>5.8.2</junit.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.openjfx</groupId>
  17. <artifactId>javafx-controls</artifactId>
  18. <version>17.0.2</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.openjfx</groupId>
  22. <artifactId>javafx-fxml</artifactId>
  23. <version>17.0.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.junit.jupiter</groupId>
  27. <artifactId>junit-jupiter-api</artifactId>
  28. <version>${junit.version}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.junit.jupiter</groupId>
  33. <artifactId>junit-jupiter-engine</artifactId>
  34. <version>${junit.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.10.1</version>
  44. <configuration>
  45. <source>17</source>
  46. <target>17</target>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.openjfx</groupId>
  51. <artifactId>javafx-maven-plugin</artifactId>
  52. <version>0.0.8</version>
  53. <executions>
  54. <execution>
  55. <!-- Default configuration for running with: mvn clean javafx:run -->
  56. <id>default-cli</id>
  57. <configuration>
  58. <mainClass>com.jesuspinar.miobjeto/com.jesuspinar.miobjeto.HelloApplication</mainClass>
  59. <launcher>app</launcher>
  60. <jlinkZipName>app</jlinkZipName>
  61. <jlinkImageName>app</jlinkImageName>
  62. <noManPages>true</noManPages>
  63. <stripDebug>true</stripDebug>
  64. <noHeaderFiles>true</noHeaderFiles>
  65. </configuration>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>