This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
49 lines (48 loc) · 1.96 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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">
<parent>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mojo-parent</artifactId>
<version>36</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.codehaus.mojo.archetypes</groupId>
<artifactId>sample-javafx</artifactId>
<version>0.6-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>Sample JavaFX Archetype</name>
<description>Sample archetype for creating a JavaFX application</description>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/mojohaus/sample-javafx/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/mojohaus/sample-javafx.git</connection>
<developerConnection>scm:git:ssh://[email protected]/mojohaus/sample-javafx</developerConnection>
<url>https://github.com/mojohaus/sample-javafx/tree/${project.scm.tag}</url>
<tag>master</tag>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<arguments>-Pmojo-release -N</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</pluginManagement>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.0</version>
</extension>
</extensions>
</build>
</project>