My favorites | Sign in
Logo
                
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?xml version="1.0" encoding="ISO-8859-1"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0">
<!-- @version $Revision$ ($Author$) $Date$ -->
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-examples</artifactId>
<version>2.1.1-SNAPSHOT</version><!--bluecove-version-->
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>tck-agent</artifactId>
<name>tck-agent</name>

<description>Compiled JSR 82 TCK agent for J2ME</description>

<dependencies>

<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-tester-base</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-gpl</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-emu</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.microemu</groupId>
<artifactId>microemulator</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.pyx4me</groupId>
<artifactId>cldcunit-se</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>

</dependencies>

<properties>
<!--wtk.bluetooth.enabled>true</wtk.bluetooth.enabled-->
<!-- short name for Motorola iDEN phones -->
<mainjarname>tck-agent</mainjarname>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.3</source>
<target>1.1</target>
<compilerArguments>
<bootclasspath>${settings.localRepository}/org/microemu/cldcapi11/${me2Version}/cldcapi11-${me2Version}.jar${path.separator}${settings.localRepository}/org/microemu/midpapi20/${me2Version}/midpapi20-${me2Version}.jar</bootclasspath>
</compilerArguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.microemu</groupId>
<artifactId>cldcapi11</artifactId>
<version>${me2Version}</version>
</dependency>
<dependency>
<groupId>org.microemu</groupId>
<artifactId>midpapi20</artifactId>
<version>${me2Version}</version>
</dependency>
</dependencies>
</plugin>

<!-- Create application loadable on the phone -->
<plugin>
<groupId>com.pyx4me</groupId>
<artifactId>j2me-maven-plugin</artifactId>
<version>${pyx4meVersion}</version>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
<configuration>
<j2meConfiguration>CLDC-1.1</j2meConfiguration>
<proguard>true</proguard>
<obfuscate>false</obfuscate>
<proguardPreverify>true</proguardPreverify>
<appendClassifier>false</appendClassifier>
<jarfile>${mainjarname}</jarfile>
<jadfile>${mainjarname}</jadfile>
<midletName>tck-Agent</midletName>
<!--proguardInclude>${basedir}/proguard.conf</proguardInclude-->
<proguardInclude></proguardInclude>
<proguardOptions>
<options>
<option>-ignorewarnings</option>
<option>-dontusemixedcaseclassnames</option>
</options>
</proguardOptions>
<jadAttributes>
<!--FlipInsensitive>true</FlipInsensitive-->
<MIDlet-Permissions>javax.microedition.io.Connector.bluetooth.client,javax.microedition.io.Connector.bluetooth.server</MIDlet-Permissions>
</jadAttributes>
<midlets>
<MIDlet>
<name>tck-Agent</name>
<class>org.bluecove.tester.tck.TckMIDlet</class>
</MIDlet>
</midlets>
<useWtkLibs>false</useWtkLibs>
<libs>
<lib>${settings.localRepository}/org/microemu/cldcapi11/${me2Version}/cldcapi11-${me2Version}.jar</lib>
<lib>${settings.localRepository}/org/microemu/midpapi20/${me2Version}/midpapi20-${me2Version}.jar</lib>
</libs>

<dependencies>
<dependency>
<groupId>org.microemu</groupId>
<artifactId>microemulator</artifactId>
<exclude>true</exclude>
</dependency>
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove</artifactId>
<filter>!javax/microedition/io/**,!com/intel/bluetooth/**</filter>
</dependency>
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-gpl</artifactId>
<exclude>true</exclude>
</dependency>
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-emu</artifactId>
<exclude>true</exclude>
</dependency>
<dependency>
<groupId>com.pyx4me</groupId>
<artifactId>cldcunit-se</artifactId>
<exclude>true</exclude>
</dependency>
</dependencies>

</configuration>

<dependencies>
<dependency>
<groupId>org.microemu</groupId>
<artifactId>midpapi20</artifactId>
<version>${me2Version}</version>
</dependency>

<dependency>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard</artifactId>
<version>4.1</version>
<scope>runtime</scope>
</dependency>

</dependencies>

</plugin>

<plugin>
<groupId>com.pyx4me</groupId>
<artifactId>obex-maven-plugin</artifactId>
<version>${pyx4meVersion}</version>
<configuration>
<jarfile>${mainjarname}.jar</jarfile>
</configuration>
</plugin>

</plugins>
</build>

</project>
Show details Hide details

Change log

r2677 by skarzhevskyy on Dec 25, 2008   Diff
next version 2.1.1
Go to: 
Project members, sign in to write a code review

Older revisions

r2667 by skarzhevskyy on Dec 25, 2008   Diff
release version 2.1.0
r2649 by skarzhevskyy on Dec 23, 2008   Diff
moving TCK agent for J2ME to different
project
All revisions of this file

File info

Size: 8329 bytes, 209 lines

File properties

svn:mime-type
text/xml
svn:eol-style
native
svn:keywords
Date Author Id Revision
Hosted by Google Code