usr/src/java/vpanels/panels/sharemgr/build.xml
author David Powell <david.e.powell@oracle.com>
Fri, 21 Jan 2011 17:24:05 -0800
changeset 641 f1833b84c12f
parent 391 71abce159a62
permissions -rw-r--r--
17760 deliver .desktop file for sharemgr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     1
<?xml version="1.0"?>
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     2
<!--
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     3
  CDDL HEADER START
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     4
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     5
  The contents of this file are subject to the terms of the
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     6
  Common Development and Distribution License (the "License").
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     7
  You may not use this file except in compliance with the License.
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     8
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
     9
  You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    10
  or http://www.opensolaris.org/os/licensing.
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    11
  See the License for the specific language governing permissions
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    12
  and limitations under the License.
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    13
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    14
  When distributing Covered Code, include this CDDL HEADER in each
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    15
  file and include the License file at usr/src/OPENSOLARIS.LICENSE.
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    16
  If applicable, add the following below this CDDL HEADER, with the
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    17
  fields enclosed by brackets "[]" replaced with your own identifying
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    18
  information: Portions Copyright [yyyy] [name of copyright owner]
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    19
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    20
  CDDL HEADER END
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    21
641
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    22
  Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    23
-->
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    24
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    25
<project name="vpanels-panels-sharemgr" default="jar">
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    26
	<property name="panel.panel" value="sharemgr" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    27
	<property name="panel.class"
293
6e1975e61929 8633 sharemgr: many client/swing classes belong in client/common
Stephen Talley <stephen.talley@sun.com>
parents: 245
diff changeset
    28
	    value="org.opensolaris.os.vp.panels.sharemgr.client.swing.SwingSharemgrPanelDescriptor" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    29
	<property name="panel.name" value="Share Management" />
641
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    30
	<property name="panel.icon.src"
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    31
	    value="org/opensolaris/os/vp/panels/sharemgr/client/swing/images/share-96.png" />
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    32
	<property name="panel.icon.dst" value="sharemgr.png" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    33
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    34
	<import file="../build-panels.xml" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    35
641
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    36
	<target name="install_project" depends="install_icon" />
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 391
diff changeset
    37
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    38
	<target name="generate_project" depends="panelsdef.generate_project">
391
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 293
diff changeset
    39
		<generate.adrimpl api="sharemgr.xml" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    40
		<generate.struct />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    41
	</target>
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    42
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    43
	<path id="classpath.javac">
17
b82508ab9887 2522 hard to differentiate group and share edit views
Stephen Talley <stephen.talley@sun.com>
parents: 0
diff changeset
    44
		<fileset refid="ws.extlibs" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    45
		<path refid="classpath.panels" />
391
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 293
diff changeset
    46
		<pathelement location="${ws.java}/rad/rad.jar" />
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 293
diff changeset
    47
		<pathelement location="${ws.java}/adr/adr.jar" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    48
	</path>
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    49
</project>