My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
<?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>obex-server</artifactId>
<name>obex-server</name>
<packaging>jar</packaging>

<description>BlueCove OBEX Push Server Web Start</description>

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

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

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

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<mainClass>net.sf.bluecove.obex.server.Main</mainClass>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Version>${buildLabel}</Version>
<Build-Time>${cctimestamp}</Build-Time>
<Build-Time>${cctimestamp}</Build-Time>
<Implementation-Version2>${pom.version}</Implementation-Version2>
<SVN-Revision>${scm.revision}</SVN-Revision>
</manifestEntries>
</archive>
</configuration>
</plugin>

<!-- awt app jar-with-dependencies -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>jar-with-dependencies</id>
<phase>package</phase>
<goals><goal>single</goal></goals>
<configuration>
<attach>true</attach>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>assembly-app.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>net.sf.bluecove.obex.server.Main</mainClass>
</manifest>
<!-- this does not work, bug http://jira.codehaus.org/browse/MASSEMBLY-188 -->
<manifestEntries>
<Version>${buildLabel}</Version>
<Build-Time>${cctimestamp}</Build-Time>
<Build-Time>${cctimestamp}</Build-Time>
<Implementation-Version2>${pom.version}</Implementation-Version2>
<SVN-Revision>${scm.revision}</SVN-Revision>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

<profiles>
<profile>
<id>build</id>
<activation>
<property>
<name>buildByMicroEmulatorTeam</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>sign-app</id>
<phase>site</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<jarPath>${project.build.directory}/${project.build.finalName}-app.${project.packaging}</jarPath>
<signedjar>${project.build.directory}/site/bluecove-obex-server-app.jar</signedjar>
<keystore>${user.home}/.m2/MicroEmulator.keystore</keystore>
<keypass>${MicroEmulator-keystore-pwd}</keypass>
<storepass>${MicroEmulator-keystore-pwd}</storepass>
<alias>MicroEmulatorSignJars</alias>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

Change log

r3003 by skarzhevskyy on Aug 7, 2009   Diff
Use ${project.version} instead of
deprecated ${version}
Go to: 
Project members, sign in to write a code review

Older revisions

r2787 by skarzhevskyy on Feb 21, 2009   Diff
Snapshot Download all major jar and
sources
r2677 by skarzhevskyy on Dec 25, 2008   Diff
next version 2.1.1
r2667 by skarzhevskyy on Dec 25, 2008   Diff
release version 2.1.0
All revisions of this file

File info

Size: 6081 bytes, 147 lines

File properties

svn:mime-type
text/xml
svn:eol-style
native
svn:keywords
Date Author Id Revision
Powered by Google Project Hosting