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.

81 lines
3.2 KiB

2 years 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>serializar.com.daniminguet.es</groupId>
  7. <artifactId>SerializarIntelliJ-8_2</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>8.2_SerializarIntelliJ</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.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. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.10.1</version>
  49. <configuration>
  50. <source>17</source>
  51. <target>17</target>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.openjfx</groupId>
  56. <artifactId>javafx-maven-plugin</artifactId>
  57. <version>0.0.8</version>
  58. <executions>
  59. <execution>
  60. <!-- Default configuration for running with: mvn clean javafx:run -->
  61. <id>default-cli</id>
  62. <configuration>
  63. <mainClass>
  64. serializar.com.daniminguet.es.serializarintellij8_2/serializar.com.daniminguet.es.serializarintellij8_2.HelloApplication
  65. </mainClass>
  66. <launcher>app</launcher>
  67. <jlinkZipName>app</jlinkZipName>
  68. <jlinkImageName>app</jlinkImageName>
  69. <noManPages>true</noManPages>
  70. <stripDebug>true</stripDebug>
  71. <noHeaderFiles>true</noHeaderFiles>
  72. </configuration>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>