Guest User

Untitled

a guest
Oct 9th, 2021
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 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>GROUPIDHERE</groupId>
  8. <artifactId>ARTIFACTIDHERE</artifactId>
  9. <version>1.0</version>
  10.  
  11. <name>NAMEHERE</name>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <javafx.version>16</javafx.version>
  16. <javafx.maven.plugin.version>0.0.6</javafx.maven.plugin.version>
  17. <fileOutput>${project.basedir}/../lib</fileOutput>
  18. </properties>
  19.  
  20. <build>
  21. <defaultGoal>clean package</defaultGoal>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.7.0</version>
  27. <configuration>
  28. <source>1.8</source>
  29. <target>1.8</target>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-resources-plugin</artifactId>
  34. <version>3.0.2</version>
  35. <executions>
  36. <execution>
  37. <id>copy-files-on-build</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>copy-resources</goal>
  41. </goals>
  42. <configuration>
  43. <outputDirectory>${project.build.directory}</outputDirectory>
  44. <resources>
  45. <resource>
  46. <directory>${project.build.directory}</directory>
  47. <include>${project.artifactId}-${project.version}.jar</include>
  48. <filtering>false</filtering>
  49. </resource>
  50. </resources>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. <resources>
  57. <resource>
  58. <directory>src/main/resources</directory>
  59. <filtering>true</filtering>
  60. </resource>
  61. </resources>
  62. </build>
  63.  
  64. <repositories>
  65. REPOSITORIESHERE
  66. </repositories>
  67.  
  68. <dependencies>
  69. OTHERDEPENDENCIES
  70. <!-- Menus -->
  71. <dependency>
  72. <groupId>my.kotlin.jar.group.id</groupId>
  73. <artifactId>kotlinjarartifactid</artifactId>
  74. <version>1.0</version>
  75. <scope>system</scope>
  76. <systemPath>${project.basedir}/path/to/MykotlinJar-1.0.jar</systemPath>
  77. </dependency>
  78. </dependencies>
  79. </project>
Advertisement
Add Comment
Please, Sign In to add comment