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.

86 lines
3.3 KiB

1 year ago
  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.example</groupId>
  7. <artifactId>Ejercicio_8_1</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>Ejercicio_8_1</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>18.0.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.openjfx</groupId>
  22. <artifactId>javafx-fxml</artifactId>
  23. <version>18.0.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.kordamp.bootstrapfx</groupId>
  27. <artifactId>bootstrapfx-core</artifactId>
  28. <version>0.4.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.junit.jupiter</groupId>
  32. <artifactId>junit-jupiter-api</artifactId>
  33. <version>${junit.version}</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.junit.jupiter</groupId>
  38. <artifactId>junit-jupiter-engine</artifactId>
  39. <version>${junit.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/com.github.javafaker/javafaker -->
  43. <dependency>
  44. <groupId>com.github.javafaker</groupId>
  45. <artifactId>javafaker</artifactId>
  46. <version>1.0.2</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>3.10.1</version>
  55. <configuration>
  56. <source>18</source>
  57. <target>18</target>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.openjfx</groupId>
  62. <artifactId>javafx-maven-plugin</artifactId>
  63. <version>0.0.8</version>
  64. <executions>
  65. <execution>
  66. <!-- Default configuration for running with: mvn clean javafx:run -->
  67. <id>default-cli</id>
  68. <configuration>
  69. <mainClass>com.example.ejercicio_8_1/com.example.ejercicio_8_1.AplicacionPersona</mainClass>
  70. <launcher>app</launcher>
  71. <jlinkZipName>app</jlinkZipName>
  72. <jlinkImageName>app</jlinkImageName>
  73. <noManPages>true</noManPages>
  74. <stripDebug>true</stripDebug>
  75. <noHeaderFiles>true</noHeaderFiles>
  76. </configuration>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>