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 >com.atr</groupId >
8+ <artifactId >jme-ttf</artifactId >
9+ <version >2.1.3</version >
10+ <inceptionYear >2016</inceptionYear >
11+
12+ <licenses >
13+ <license >
14+ <name >Free Public License 1.0.0</name >
15+ <url >http://opensource.org/licenses/FPL-1.0.0</url >
16+ <distribution >repo</distribution >
17+ </license >
18+ <license >
19+ <name >BSD New</name >
20+ <url >http://opensource.org/licenses/BSD-3-Clause</url >
21+ <distribution >repo</distribution >
22+ </license >
23+ </licenses >
24+
25+ <properties >
26+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
27+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
28+ <java .version>1.7</java .version>
29+ <jme3 .version>[3.1,)</jme3 .version>
30+ <sfntly .version>1.0.1</sfntly .version>
31+ <android .version>[4.1,)</android .version>
32+ </properties >
33+
34+ <dependencies >
35+ <dependency >
36+ <groupId >org.jmonkeyengine</groupId >
37+ <artifactId >jme3-core</artifactId >
38+ <version >${jme3.version} </version >
39+ <scope >compile</scope >
40+ </dependency >
41+
42+ <dependency >
43+ <groupId >com.jaredrummler</groupId >
44+ <artifactId >sfntly</artifactId >
45+ <version >${sfntly.version} </version >
46+ <scope >compile</scope >
47+ </dependency >
48+
49+ <!-- provided when running on Desktop -->
50+ <dependency >
51+ <groupId >org.jmonkeyengine</groupId >
52+ <artifactId >jme3-desktop</artifactId >
53+ <version >${jme3.version} </version >
54+ <scope >provided</scope >
55+ </dependency >
56+
57+ <!-- provided when running on Android -->
58+ <dependency >
59+ <groupId >org.jmonkeyengine</groupId >
60+ <artifactId >jme3-android</artifactId >
61+ <version >${jme3.version} </version >
62+ <scope >provided</scope >
63+ </dependency >
64+
65+ <dependency >
66+ <groupId >com.google.android</groupId >
67+ <artifactId >android</artifactId >
68+ <version >${android.version} </version >
69+ <scope >provided</scope >
70+ </dependency >
71+
72+ <!-- test runtime -->
73+ <dependency >
74+ <groupId >junit</groupId >
75+ <artifactId >junit</artifactId >
76+ <version >4.12</version >
77+ <scope >test</scope >
78+ </dependency >
79+
80+ <dependency >
81+ <groupId >org.jmonkeyengine</groupId >
82+ <artifactId >jme3-lwjgl</artifactId >
83+ <version >${jme3.version} </version >
84+ <scope >test</scope >
85+ </dependency >
86+ </dependencies >
87+
88+ <build >
89+ <plugins >
90+ <plugin >
91+ <groupId >org.apache.maven.plugins</groupId >
92+ <artifactId >maven-compiler-plugin</artifactId >
93+ <configuration >
94+ <source >${java.version} </source >
95+ <target >${java.version} </target >
96+ <encoding >${project.build.sourceEncoding} </encoding >
97+ </configuration >
98+ </plugin >
99+ <plugin >
100+ <groupId >org.apache.maven.plugins</groupId >
101+ <artifactId >maven-source-plugin</artifactId >
102+ <executions >
103+ <execution >
104+ <phase >compile</phase >
105+ <goals >
106+ <goal >jar-no-fork</goal >
107+ </goals >
108+ </execution >
109+ </executions >
110+ </plugin >
111+ </plugins >
112+ </build >
113+ </project >
0 commit comments