source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincDocRetrieveEJB/build.xml@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 8.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- You may freely edit this file. See commented blocks below for -->
3<!-- some examples of how to customize the build. -->
4<!-- (If you delete it and reopen the project it will be recreated.) -->
5<project name="NhincDocRetrieveEJB" default="default" basedir="." xmlns:ejbjarproject="http://www.netbeans.org/ns/j2ee-ejbjarproject/3">
6 <description>Builds, tests, and runs the project NhincDocRetrieveEJB.</description>
7 <import file="nbproject/build-impl.xml"/>
8 <import file="../../../build.lib.xml" />
9
10 <target name="build">
11 <property name="target-to-call" value="dist" />
12 <antcall target="call-target-in-isolation-if-out-of-date" />
13 </target>
14 <target name="clean-build" depends="clean,dist" />
15 <target name="clean-test" depends="clean,dist" />
16 <target name="build-test" depends="dist" />
17 <!--
18
19 There exist several targets which are by default empty and which can be
20 used for execution of your tasks. These targets are usually executed
21 before and after some main targets. They are:
22
23 -pre-init: called before initialization of project properties
24 -post-init: called after initialization of project properties
25 -pre-compile: called before javac compilation
26 -post-compile: called after javac compilation
27 -pre-compile-single: called before javac compilation of single file
28 -post-compile-single: called after javac compilation of single file
29 -pre-dist: called before archive building
30 -post-dist: called after archive building
31 -post-clean: called after cleaning build products
32 -pre-run-deploy: called before deploying
33 -post-run-deploy: called after deploying
34
35 (Targets beginning with '-' are not intended to be called on their own.)
36
37 Example of pluging an obfuscator after the compilation could look like
38
39 <target name="-post-compile">
40 <obfuscate>
41 <fileset dir="${build.classes.dir}"/>
42 </obfuscate>
43 </target>
44
45 For list of available properties check the imported
46 nbproject/build-impl.xml file.
47
48
49 Other way how to customize the build is by overriding existing main targets.
50 The target of interest are:
51
52 init-macrodef-javac: defines macro for javac compilation
53 init-macrodef-debug: defines macro for class debugging
54 do-dist: archive building
55 run: execution of project
56 javadoc-build: javadoc generation
57
58 Example of overriding the target for project execution could look like
59
60 <target name="run" depends="<PROJNAME>-impl.jar">
61 <exec dir="bin" executable="launcher.exe">
62 <arg file="${dist.jar}"/>
63 </exec>
64 </target>
65
66 Notice that overridden target depends on jar target and not only on
67 compile target as regular run target does. Again, for list of available
68 properties which you can use check the target you are overriding in
69 nbproject/build-impl.xml file.
70
71 -->
72 <!-- Had to pull this out of jaxws-build.xml because it copied the wsdl, but for some reason it
73 did not copy the schemas. We have to copy the schemas ourselves or it will not deploy. -->
74 <target name="wsimport-service-DocRetrieve" depends="wsimport-init,wsimport-service-check-DocRetrieve" unless="wsimport-service-DocRetrieve.notRequired">
75 <wsimport xendorsed="true" sourcedestdir="${build.generated.dir}/wsimport/service" extension="true" verbose="true" destdir="${build.generated.dir}/wsimport/binaries" wsdl="${basedir}/${meta.inf}/xml-resources/web-services/DocRetrieve/wsdl/NhinDocRetrieve.wsdl" catalog="catalog.xml"/>
76 <echo message="copy wsdl's" />
77 <copy todir="${basedir}/${meta.inf}/wsdl/DocRetrieve">
78 <fileset dir="${basedir}/${meta.inf}/xml-resources/web-services/DocRetrieve/wsdl/"/>
79 </copy>
80
81 <echo message="copy schemas" />
82 <copy todir="${basedir}/${meta.inf}/wsdl/schemas/">
83 <fileset dir="${basedir}/${meta.inf}/xml-resources/web-services/DocRetrieve/schemas/" />
84 </copy>
85 </target>
86
87 <target name="wsimport-client-NhincDocRetrieve" depends="wsimport-init,wsimport-client-check-NhincDocRetrieve" unless="wsimport-client-NhincDocRetrieve.notRequired">
88 <wsimport xendorsed="true" sourcedestdir="${build.generated.dir}/wsimport/client" extension="true" destdir="${build.generated.dir}/wsimport/binaries" wsdl="${basedir}/${meta.inf}/xml-resources/web-service-references/NhincDocRetrieve/wsdl/NhincDocRetrieve.wsdl" wsdlLocation="file:/C:/projects/nhinc/Current/Product/Production/Common/Interfaces/src/wsdl/NhincDocRetrieve.wsdl" catalog="catalog.xml"/>
89 <echo message="generating binaries for referenced wsdl"/>
90 <copy todir="${classes.dir}">
91 <fileset dir="${build.generated.dir}/wsimport/binaries" includes="**/*.xml"/>
92 </copy>
93
94 <echo message="copy wsdl's" />
95 <copy todir="${basedir}/${meta.inf}/wsdl/client/NhincDocRetrieve">
96 <fileset dir="${basedir}/${meta.inf}/xml-resources/web-service-references/NhincDocRetrieve/wsdl/"/>
97 </copy>
98
99 <echo message="copy schemas" />
100 <copy todir="${basedir}/${meta.inf}/wsdl/client/schemas/">
101 <fileset dir="${basedir}/${meta.inf}/xml-resources/web-service-references/NhincDocRetrieve/schemas/" />
102 </copy>
103 </target>
104
105 <target depends="init" if="no.dist.ear.dir" name="-deps-module-jar" unless="no.deps">
106 <property name="project.NhincLib.Absolute" location="${project.NhincLib}"/>
107 <property name="project.NhincSamlTokenExtractionLib.Absolute" location="${project.NhincSamlTokenExtractionLib}"/>
108
109 <ant dir="${project.NhincLib.Absolute}" antfile="${project.NhincLib.Absolute}/build.xml" inheritall="false" target="jar"/>
110 <ant dir="${project.NhincSamlTokenExtractionLib.Absolute}" antfile="${project.NhincSamlTokenExtractionLib.Absolute}/build.xml" inheritall="false" target="jar"/>
111 </target>
112 <target depends="init" if="dist.ear.dir" name="-deps-ear-jar" unless="no.deps">
113 <property name="project.NhincLib.Absolute" location="${project.NhincLib}"/>
114 <property name="project.NhincSamlTokenExtractionLib.Absolute" location="${project.NhincSamlTokenExtractionLib}"/>
115
116 <ant dir="${project.NhincLib.Absolute}" antfile="${project.NhincLib.Absolute}/build.xml" inheritall="false" target="jar"/>
117 <ant dir="${project.NhincSamlTokenExtractionLib.Absolute}" antfile="${project.NhincSamlTokenExtractionLib.Absolute}/build.xml" inheritall="false" target="jar"/>
118 </target>
119
120 <target depends="init" if="no.dist.ear.dir" name="deps-clean" unless="no.deps">
121 <property name="project.NhincLib.Absolute" location="${project.NhincLib}"/>
122 <property name="project.NhincSamlTokenExtractionLib.Absolute" location="${project.NhincSamlTokenExtractionLib}"/>
123
124 <ant dir="${project.NhincLib.Absolute}" antfile="${project.NhincLib.Absolute}/build.xml" inheritall="false" target="clean"/>
125 <ant dir="${project.NhincSamlTokenExtractionLib.Absolute}" antfile="${project.NhincSamlTokenExtractionLib.Absolute}/build.xml" inheritall="false" target="clean"/>
126 </target>
127
128
129 <target depends="compile" name="library-inclusion-in-archive">
130
131 <copy file="${reference.NhincSamlTokenExtractionLib.jar}" todir="${build.classes.dir}"/>
132 <copy file="${reference.NhincLib.jar}" todir="${build.classes.dir}"/>
133
134 </target>
135 <target depends="compile" name="library-inclusion-in-manifest">
136
137 <basename file="${reference.NhincSamlTokenExtractionLib.jar}" property="included.lib.reference.NhincSamlTokenExtractionLib.jar"/>
138 <copy file="${reference.NhincSamlTokenExtractionLib.jar}" todir="${dist.ear.dir}"/>
139 <basename file="${reference.NhincLib.jar}" property="included.lib.reference.NhincLib.jar"/>
140 <copy file="${reference.NhincLib.jar}" todir="${dist.ear.dir}"/>
141
142 <manifest file="${build.ear.classes.dir}/META-INF/MANIFEST.MF" mode="update">
143 <attribute name="Class-Path" value="${included.lib.reference.NhincSamlTokenExtractionLib.jar} ${included.lib.reference.NhincLib.jar} "/>
144 </manifest>
145 </target>
146
147</project>
Note: See TracBrowser for help on using the repository browser.