Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>GROUPIDHERE</groupId>
- <artifactId>ARTIFACTIDHERE</artifactId>
- <version>1.0</version>
- <name>NAMEHERE</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <javafx.version>16</javafx.version>
- <javafx.maven.plugin.version>0.0.6</javafx.maven.plugin.version>
- <fileOutput>${project.basedir}/../lib</fileOutput>
- </properties>
- <build>
- <defaultGoal>clean package</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>3.0.2</version>
- <executions>
- <execution>
- <id>copy-files-on-build</id>
- <phase>package</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}</outputDirectory>
- <resources>
- <resource>
- <directory>${project.build.directory}</directory>
- <include>${project.artifactId}-${project.version}.jar</include>
- <filtering>false</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <repositories>
- REPOSITORIESHERE
- </repositories>
- <dependencies>
- OTHERDEPENDENCIES
- <!-- Menus -->
- <dependency>
- <groupId>my.kotlin.jar.group.id</groupId>
- <artifactId>kotlinjarartifactid</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/path/to/MykotlinJar-1.0.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment