usr/src/java/vpanels/panels/firewall/build.xml
author David Powell <David.Powell@sun.com>
Mon, 14 Dec 2009 23:43:39 -0800
changeset 391 71abce159a62
parent 333 315651ff58c5
child 497 69d2768f23c0
permissions -rw-r--r--
13357 rad
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
 
217
b5a0a305991e 6773 panel registration has vestigial dependencies on categories
Stephen Talley <stephen.talley@sun.com>
parents: 119
diff changeset
    22
  Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    23
  Use is subject to license terms.
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
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    26
<project name="vpanels-panels-firewall" default="jar">
333
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    27
	<import file="../build-panels.xml" />
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    28
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    29
	<path id="classpath.javac">
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    30
		<fileset refid="ws.extlibs" />
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    31
		<path refid="classpath.panels" />
391
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 333
diff changeset
    32
		<pathelement location="${ws.java}/rad/rad.jar" />
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 333
diff changeset
    33
		<pathelement location="${ws.java}/adr/adr.jar" />
333
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    34
	</path>
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    35
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    36
	<property name="panel.panel" value="firewall" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    37
	<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
    38
	    value="org.opensolaris.os.vp.panels.firewall.client.swing.FirewallPanelDescriptor"
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    39
	    />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    40
	<property name="panel.name" value="Network Service Security Management" />
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    41
333
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    42
	<target name="generate_project" depends="panelsdef.generate_project">
391
71abce159a62 13357 rad
David Powell <David.Powell@sun.com>
parents: 333
diff changeset
    43
		<generate.adr api="firewall.xml" />
333
315651ff58c5 10317 Firewall panel rewhacked
Truong Nguyen <Truong.Q.Nguyen@Sun.COM>
parents: 245
diff changeset
    44
	</target>
0
62ac12e07fc0 Initial integration.
David Powell <David.Powell@sun.com>
parents:
diff changeset
    45
</project>