This repository has been archived by the owner on Aug 7, 2018. It is now read-only.
forked from aldaris/opensso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
60 lines (49 loc) · 2.1 KB
/
build.xml
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
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
The contents of this file are subject to the terms
of the Common Development and Distribution License
(the License). You may not use this file except in
compliance with the License.
You can obtain a copy of the License at
https://opensso.dev.java.net/public/CDDLv1.0.html or
opensso/legal/CDDLv1.0.txt
See the License for the specific language governing
permission and limitations under the License.
When distributing Covered Code, include this CDDL
Header Notice in each file and include the License file
at opensso/legal/CDDLv1.0.txt.
If applicable, add the following below the CDDL Header,
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
$Id: build.xml,v 1.2 2008-06-29 15:32:50 kevinserwin Exp $
-->
<project name="opensso" default="usage">
<description>Open Web Single Sign-On</description>
<target name="srczip">
<mkdir dir="products/built/dist" />
<zip destfile="products/built/dist/opensso-src.zip"
whenempty="create" basedir="." >
<include name="resources/**" />
<include name="products/**" />
<include name="qatest/**" />
<exclude name="**/diffs/**" />
<exclude name="**/built/**" />
<exclude name="**/extlib/**" />
</zip>
<checksum file="products/built/dist/opensso-src.zip"
algorithm="SHA" fileext=".sha" />
</target>
<target name="usage">
<echo message=" "/>
<echo message=" Following targets are available:"/>
<echo message=" "/>
<echo message=" srczip : create zip file that contains source code and resources "/>
<echo message=" "/>
<echo message=" To run a target, issue the following command:"/>
<echo message=" "/>
<echo message=" ant <target-name>"/>
<echo message=" "/>
</target>
</project>