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
<?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>bluecove-webstart</artifactId>
<name>bluecove-webstart</name>
<packaging>pom</packaging>

<description>BlueCove Web Start creator</description>

<dependencies>

<!-- See JNLP tempate for dependancy order hack -->

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

<dependency>
<groupId>org.microemu</groupId>
<artifactId>microemu-device-large</artifactId>
<version>${me2Version}</version>
</dependency>

<dependency>
<groupId>org.microemu</groupId>
<artifactId>microemu-device-minimum</artifactId>
<version>${me2Version}</version>
</dependency>

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

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

</dependencies>

<properties>
<jnlpPrefix></jnlpPrefix>
</properties>

<profiles>
<profile>
<id>debug</id>
<properties>
<jnlpPrefix>local-debug-</jnlpPrefix>
</properties>
</profile>
<!--
<profile>
<id>build</id>
<properties>
<jnlpPrefix>snapshot-</jnlpPrefix>
</properties>
</profile>
-->
</profiles>

<build>
<plugins>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<!-- http://mojo.codehaus.org/webstart-maven-plugin-parent/webstart-maven-plugin/howto.html -->
<executions>
<execution>
<goals>
<goal>jnlp</goal>
</goals>
</execution>
</executions>
<configuration>
<workDirectory>${project.build.directory}/site</workDirectory>

<!-- transitive dependencies filter -->
<dependencies>
<!-- Note that only groupId and artifactId must be specified here. because of a limitation of the Include/ExcludesArtifactFilter -->
<!--includes>
<include>org.microemu:microemu-swing</include>
</includes-->
<!-- excludes>
<exclude></exclude>
<excludes-->
</dependencies>

<!-- JNLP generation -->
<jnlp>
<!-- default values -->
<resources>${project.basedir}/src/main/jnlp</resources>
<!--inputTemplateResourcePath>${project.basedir}</inputTemplateResourcePath-->
<inputTemplate>src/jnlp-templates/${jnlpPrefix}template.vm</inputTemplate> <!-- relative to inputTemplateResourcePath -->
<outputFile>${jnlpPrefix}demo.jnlp</outputFile> <!-- defaults to launch.jnlp -->

<!-- used to automatically identify the jar containing the main class. -->
<!-- this is perhaps going to change -->
<mainClass>org.microemu.app.Main</mainClass>
</jnlp>


<!-- SIGNING -->
<!-- defining this will automatically sign the jar and its dependencies, if necessary -->
<sign>
<keystore>${user.home}/.m2/MicroEmulator.keystore</keystore>
<keypass>${MicroEmulator-keystore-pwd}</keypass> <!-- we need to override passwords easily from the command line. ${keypass} -->
<storepass>${MicroEmulator-keystore-pwd}</storepass> <!-- ${storepass} -->
<alias>MicroEmulatorSignJars</alias>

<verify>true</verify>
</sign>

<!-- KEYSTORE MANGEMENT -->
<keystore>
<delete>false</delete> <!-- delete the keystore -->
<gen>false</gen> <!-- optional shortcut to generate the store. -->
</keystore>

<verbose>false</verbose>

</configuration>
</plugin>

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.1</version>
<configuration>
<webAppSourceDirectory>${project.build.directory}/site</webAppSourceDirectory>
<webXml>${basedir}/jetty-web.xml</webXml>
</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
r2575 by skarzhevskyy on Dec 12, 2008   Diff
dependency Management + pyx4me version
2.0.3
r2410 by skarzhevskyy on Oct 09, 2008   Diff
new product version 2.1.0-SNAPSHOT;
organize product to modules
All revisions of this file

File info

Size: 5715 bytes, 155 lines

File properties

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