usr/src/java/vpanels/panels/apache/build.xml
author David Powell <david.e.powell@oracle.com>
Fri, 21 Jan 2011 17:24:05 -0800
changeset 641 f1833b84c12f
parent 556 4db6c449f366
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: 556
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-apache" default="jar">
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    26
	<property name="panel.panel" value="apache" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    27
	<property name="panel.class"
219
57841c113efe 6788 package names should share o.o.o.vp prefix
Stephen Talley <stephen.talley@sun.com>
parents: 217
diff changeset
    28
	    value="org.opensolaris.os.vp.panels.apache.client.swing.ApachePanelDescriptor"
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    29
	    />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    30
	<property name="panel.name" value="Apache Web Server" />
641
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 556
diff changeset
    31
	<property name="panel.icon.src"
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 556
diff changeset
    32
	    value="org/opensolaris/os/vp/panels/apache/client/swing/images/apache-129.png" />
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 556
diff changeset
    33
	<property name="panel.icon.dst" value="apache.png" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    34
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    35
	<import file="../build-panels.xml" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    36
641
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 556
diff changeset
    37
	<target name="install_project" depends="install_icon" />
f1833b84c12f 17760 deliver .desktop file for sharemgr
David Powell <david.e.powell@oracle.com>
parents: 556
diff changeset
    38
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    39
	<path id="classpath.javac">
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    40
		<path refid="classpath.panels" />
497
69d2768f23c0 9316 - apache: verification of local IP address occurs on client, not remote server
Dan Labrecque - Sun Microsystems <Dan.Labrecque@Sun.COM>
parents: 245
diff changeset
    41
                <pathelement location="${ws.java}/rad/rad.jar" />
556
4db6c449f366 16806 INT-6: Add support for interface stability/commitment
devjani.ray@oracle.com <devjani.ray@oracle.com>
parents: 497
diff changeset
    42
                <pathelement location="${ws.java}/adr/adr.jar" />
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    43
	</path>
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    44
</project>