-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
50 lines (42 loc) · 1.83 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
50
<?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>com.github.eloyzone</groupId>
<artifactId>eloy-flash-cards</artifactId>
<version>1.0.0</version>
<name>com.github.eloyzone.eloy-flash-cards</name>
<description>This is a program which helps you to remember and learn new things, especially English words.</description>
<url>https://github.com/eloyzone/eloy-flash-cards</url>
<developers>
<developer>
<name>Eloy 'Elyas' Hadizadeh Tasbiti</name>
<email>eloy.zone@hotmail.com</email>
<organization>eloyzone</organization>
<organizationUrl>http://www.eloy.zone</organizationUrl>
</developer>
</developers>
<build>
<plugins>
<plugin>
<!--we need Java-8's features like Lambda, etc -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!--provides a way to assemble distribution bundles for JavaFX applications (8+ and 9+) from within Maven.-->
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>8.8.3</version>
<configuration>
<mainClass>com.github.eloyzone.eloyflashcards.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>