pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.ulco</groupId>
  7. <artifactId>Minipaint</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>15</maven.compiler.source>
  11. <maven.compiler.target>15</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.openjfx</groupId>
  16. <artifactId>javafx-controls</artifactId>
  17. <version>15.0.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>4.12</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.testfx</groupId>
  27. <artifactId>testfx-junit</artifactId>
  28. <version>4.0.15-alpha</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.testfx</groupId>
  33. <artifactId>testfx-core</artifactId>
  34. <version>4.0.16-alpha</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.openjfx</groupId>
  42. <artifactId>javafx-maven-plugin</artifactId>
  43. <version>0.0.3</version>
  44. <configuration>
  45. <mainClass>drawing.PaintApplication</mainClass>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>