-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
113 lines (108 loc) · 3.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.aretche.hwlist</groupId>
<artifactId>griffon-hwlist</artifactId>
<packaging>jar</packaging>
<version>0.1.0-SNAPSHOT</version>
<parent>
<groupId>org.codehaus.griffon</groupId>
<artifactId>application-master-pom</artifactId>
<version>1.12.0</version>
</parent>
<properties>
<griffon.version>2.12.0</griffon.version>
<application.main.class>io.github.aretche.hwlist.Launcher</application.main.class>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<application_name>${project.name}</application_name>
<application_version>${project.version}</application_version>
<build_date>${git.build.time}</build_date>
<build_time>${git.build.time}</build_time>
<build_revision>${git.commit.id}</build_revision>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
</plugin>
</plugins>
<!-- Uncomment if project is versioned using Git
<filters>
<filter>${project.build.outputDirectory}/git.properties</filter>
</filters>
-->
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- compile -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-groovy-compile</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-groovy</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-javafx</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-core-java8</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-javafx-groovy</artifactId>
</dependency>
<!-- runtime -->
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-guice</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<!-- test -->
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-core-test</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>griffon-javafx-test</artifactId>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>http://jcenter.bintray.com/</url>
</repository>
<repository>
<id>griffon-plugins</id>
<name>griffon-plugins</name>
<url>http://dl.bintray.com/griffon/griffon-plugins</url>
</repository>
</repositories>
</project>