Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  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.  
  7. <groupId>nl.inholland</groupId>
  8. <artifactId>NoDesk</artifactId>
  9. <version>0.1-SNAPSHOT</version>
  10.  
  11.  
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.projectlombok</groupId>
  15. <artifactId>lombok</artifactId>
  16. <version>1.18.12</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.google.guava</groupId>
  21. <artifactId>guava</artifactId>
  22. <version>28.2-jre</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mongodb</groupId>
  26. <artifactId>mongo-java-driver</artifactId>
  27. <version>3.12.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.airhacks</groupId>
  31. <artifactId>afterburner.fx</artifactId>
  32. <version>1.7.0</version>
  33. </dependency>
  34. </dependencies>
  35.  
  36. <build>
  37. <resources>
  38. <resource>
  39. <directory>src/main/java</directory>
  40. <includes>
  41. <include>**/*.fxml</include>
  42. <include>**/*.css</include>
  43. <include>**/*.properties</include>
  44. </includes>
  45. </resource>
  46. </resources>
  47.  
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <version>3.7.0</version>
  53. <configuration>
  54. <source>1.8</source>
  55. <target>1.8</target>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement