-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
39 lines (39 loc) · 1.25 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
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.json.me</groupId>
<artifactId>json</artifactId>
<version>1.0</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
<compilerArguments>
<bootclasspath>${env.WTK_HOME}/lib/cldc_1.1.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifestEntries>
<MIDlet-1>,,</MIDlet-1>
<MIDlet-Name>${project.artifactId}</MIDlet-Name>
<MIDlet-Version>${project.version}</MIDlet-Version>
<MicroEdition-Configuration>CLDC-1.1</MicroEdition-Configuration>
<MicroEdition-Profile>MIDP-2.0</MicroEdition-Profile>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>