From 8ad67c5f1fbecbf8a3cf24eecb0688b9d484e32d Mon Sep 17 00:00:00 2001 From: Nils Christian Ehmke <nie@informatik.uni-kiel.de> Date: Fri, 23 Dec 2011 12:58:35 +0100 Subject: [PATCH] Modified the project: It can now be compiled and deployed via Maven; Also it is using jetty now. The Read.me-file contains instructions how to start the project. --- .gitignore | 3 +- Kieker.WebGUI/nbactions.xml | 10 + Kieker.WebGUI/pom.xml | 116 ++ .../java/beans/AvailablePluginsBean.java | 2 +- .../src/main}/java/beans/ComponentBean.java | 0 .../src/main}/java/beans/ProjectsBean.java | 0 .../src/main}/java/beans/TreeBean.java | 0 .../src/main}/java/common/Project.java | 0 .../src/main/webapp}/META-INF/context.xml | 0 .../src/main/webapp}/WEB-INF/beans.xml | 0 .../src/main/webapp}/WEB-INF/web.xml | 0 .../src/main/webapp}/main.xhtml | 2 +- Read.me | 7 + build.xml | 71 -- lib/ui-darkness-1.0.2.jar | Bin 32024 -> 0 bytes nbproject/ant-deploy.xml | 49 - nbproject/build-impl.xml | 1077 ----------------- nbproject/genfiles.properties | 8 - nbproject/project.properties | 87 -- nbproject/project.xml | 35 - src/conf/MANIFEST.MF | 2 - 21 files changed, 137 insertions(+), 1332 deletions(-) create mode 100644 Kieker.WebGUI/nbactions.xml create mode 100644 Kieker.WebGUI/pom.xml rename {src => Kieker.WebGUI/src/main}/java/beans/AvailablePluginsBean.java (97%) rename {src => Kieker.WebGUI/src/main}/java/beans/ComponentBean.java (100%) rename {src => Kieker.WebGUI/src/main}/java/beans/ProjectsBean.java (100%) rename {src => Kieker.WebGUI/src/main}/java/beans/TreeBean.java (100%) rename {src => Kieker.WebGUI/src/main}/java/common/Project.java (100%) rename {web => Kieker.WebGUI/src/main/webapp}/META-INF/context.xml (100%) rename {web => Kieker.WebGUI/src/main/webapp}/WEB-INF/beans.xml (100%) rename {web => Kieker.WebGUI/src/main/webapp}/WEB-INF/web.xml (100%) rename {web => Kieker.WebGUI/src/main/webapp}/main.xhtml (97%) create mode 100644 Read.me delete mode 100644 build.xml delete mode 100644 lib/ui-darkness-1.0.2.jar delete mode 100644 nbproject/ant-deploy.xml delete mode 100644 nbproject/build-impl.xml delete mode 100644 nbproject/genfiles.properties delete mode 100644 nbproject/project.properties delete mode 100644 nbproject/project.xml delete mode 100644 src/conf/MANIFEST.MF diff --git a/.gitignore b/.gitignore index b03c254d..6db4bed6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ /tmp/ /build/ /dist/ -/nbproject/private \ No newline at end of file +/nbproject/private +/Kieker.WebGUI/target/ \ No newline at end of file diff --git a/Kieker.WebGUI/nbactions.xml b/Kieker.WebGUI/nbactions.xml new file mode 100644 index 00000000..ebbd3359 --- /dev/null +++ b/Kieker.WebGUI/nbactions.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<actions> + <action> + <actionName>run</actionName> + <goals> + <goal>package</goal> + <goal>jetty:run</goal> + </goals> + </action> + </actions> diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml new file mode 100644 index 00000000..5591ad18 --- /dev/null +++ b/Kieker.WebGUI/pom.xml @@ -0,0 +1,116 @@ + +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>de.kieker</groupId> + <artifactId>Kieker.WebGUI</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>war</packaging> + + <name>Kieker.WebGUI</name> + + <properties> + <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-maven-plugin</artifactId> + <version>8.1.0.RC1</version> + </dependency> + <dependency> + <groupId>com.sun.faces</groupId> + <artifactId>jsf-api</artifactId> + <version>2.1.6</version> + </dependency> + <dependency> + <groupId>com.sun.faces</groupId> + <artifactId>jsf-impl</artifactId> + <version>2.1.6</version> + </dependency> + <dependency> + <groupId>javax</groupId> + <artifactId>javaee-web-api</artifactId> + <version>6.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.primefaces</groupId> + <artifactId>primefaces</artifactId> + <version>2.2.1</version> + </dependency> + <dependency> + <groupId>org.primefaces.themes</groupId> + <artifactId>ui-darkness</artifactId> + <version>1.0.2</version> + </dependency> + </dependencies> + + <repositories> + <repository> + <id>prime-repo</id> + <name>PrimeFaces Maven Repository</name> + <url>http://repository.primefaces.org</url> + <layout>default</layout> + </repository> + </repositories> + + <build> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-maven-plugin</artifactId> + <version>8.1.0.RC1</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + <compilerArguments> + <endorseddirs>${endorsed.dir}</endorseddirs> + </compilerArguments> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>2.1.1</version> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.1</version> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <outputDirectory>${endorsed.dir}</outputDirectory> + <silent>true</silent> + <artifactItems> + <artifactItem> + <groupId>javax</groupId> + <artifactId>javaee-endorsed-api</artifactId> + <version>6.0</version> + <type>jar</type> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/src/java/beans/AvailablePluginsBean.java b/Kieker.WebGUI/src/main/java/beans/AvailablePluginsBean.java similarity index 97% rename from src/java/beans/AvailablePluginsBean.java rename to Kieker.WebGUI/src/main/java/beans/AvailablePluginsBean.java index 5d7ca419..dfa3db0c 100644 --- a/src/java/beans/AvailablePluginsBean.java +++ b/Kieker.WebGUI/src/main/java/beans/AvailablePluginsBean.java @@ -11,7 +11,7 @@ import org.primefaces.model.TreeNode; * @author Nils Christian Ehmke */ @ManagedBean -@SessionScoped +@RequestScoped public class AvailablePluginsBean { public synchronized TreeNode getAvailablePluginsRoot() { diff --git a/src/java/beans/ComponentBean.java b/Kieker.WebGUI/src/main/java/beans/ComponentBean.java similarity index 100% rename from src/java/beans/ComponentBean.java rename to Kieker.WebGUI/src/main/java/beans/ComponentBean.java diff --git a/src/java/beans/ProjectsBean.java b/Kieker.WebGUI/src/main/java/beans/ProjectsBean.java similarity index 100% rename from src/java/beans/ProjectsBean.java rename to Kieker.WebGUI/src/main/java/beans/ProjectsBean.java diff --git a/src/java/beans/TreeBean.java b/Kieker.WebGUI/src/main/java/beans/TreeBean.java similarity index 100% rename from src/java/beans/TreeBean.java rename to Kieker.WebGUI/src/main/java/beans/TreeBean.java diff --git a/src/java/common/Project.java b/Kieker.WebGUI/src/main/java/common/Project.java similarity index 100% rename from src/java/common/Project.java rename to Kieker.WebGUI/src/main/java/common/Project.java diff --git a/web/META-INF/context.xml b/Kieker.WebGUI/src/main/webapp/META-INF/context.xml similarity index 100% rename from web/META-INF/context.xml rename to Kieker.WebGUI/src/main/webapp/META-INF/context.xml diff --git a/web/WEB-INF/beans.xml b/Kieker.WebGUI/src/main/webapp/WEB-INF/beans.xml similarity index 100% rename from web/WEB-INF/beans.xml rename to Kieker.WebGUI/src/main/webapp/WEB-INF/beans.xml diff --git a/web/WEB-INF/web.xml b/Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml similarity index 100% rename from web/WEB-INF/web.xml rename to Kieker.WebGUI/src/main/webapp/WEB-INF/web.xml diff --git a/web/main.xhtml b/Kieker.WebGUI/src/main/webapp/main.xhtml similarity index 97% rename from web/main.xhtml rename to Kieker.WebGUI/src/main/webapp/main.xhtml index 681095a1..d153a8ea 100644 --- a/web/main.xhtml +++ b/Kieker.WebGUI/src/main/webapp/main.xhtml @@ -13,7 +13,7 @@ <p:layoutUnit header="Current Project: n/a" position="top" height="115" collapsible="true"> <div style="padding-top:10px" align="center"> <p:spacer width="60" height="10" /> - <p:button value="New Project" onmousedown="#{projectsBean.addProject('Some Project')}" /> + <p:commandButton value="New Project"/> <p:spacer width="35" height="10" /> <p:button value="Add Dependency"/> <p:spacer width="35" height="10" /> diff --git a/Read.me b/Read.me new file mode 100644 index 00000000..d687ecb4 --- /dev/null +++ b/Read.me @@ -0,0 +1,7 @@ +The project "Kieker.WebGUI" can be started via Maven. Just use the command + +mvn jetty:run + +to pack the war-file, deploy it on jetty and start jetty. The web tool is then available at + +http://localhost:8080/faces/main.xhtml \ No newline at end of file diff --git a/build.xml b/build.xml deleted file mode 100644 index c3856935..00000000 --- a/build.xml +++ /dev/null @@ -1,71 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- You may freely edit this file. See commented blocks below for --> -<!-- some examples of how to customize the build. --> -<!-- (If you delete it and reopen the project it will be recreated.) --> -<!-- By default, only the Clean and Build commands use this build script. --> -<!-- Commands such as Run, Debug, and Test only use this build script if --> -<!-- the Compile on Save feature is turned off for the project. --> -<!-- You can turn off the Compile on Save (or Deploy on Save) setting --> -<!-- in the project's Project Properties dialog box.--> -<project name="Kieker.WebGUI" default="default" basedir="."> - <description>Builds, tests, and runs the project Kieker.WebGUI.</description> - <import file="nbproject/build-impl.xml"/> - <!-- - - There exist several targets which are by default empty and which can be - used for execution of your tasks. These targets are usually executed - before and after some main targets. They are: - - -pre-init: called before initialization of project properties - -post-init: called after initialization of project properties - -pre-compile: called before javac compilation - -post-compile: called after javac compilation - -pre-compile-single: called before javac compilation of single file - -post-compile-single: called after javac compilation of single file - -pre-compile-test: called before javac compilation of JUnit tests - -post-compile-test: called after javac compilation of JUnit tests - -pre-compile-test-single: called before javac compilation of single JUnit test - -post-compile-test-single: called after javac compilation of single JUunit test - -pre-dist: called before archive building - -post-dist: called after archive building - -post-clean: called after cleaning build products - -pre-run-deploy: called before deploying - -post-run-deploy: called after deploying - - Example of pluging an obfuscator after the compilation could look like - - <target name="-post-compile"> - <obfuscate> - <fileset dir="${build.classes.dir}"/> - </obfuscate> - </target> - - For list of available properties check the imported - nbproject/build-impl.xml file. - - - Other way how to customize the build is by overriding existing main targets. - The target of interest are: - - init-macrodef-javac: defines macro for javac compilation - init-macrodef-junit: defines macro for junit execution - init-macrodef-debug: defines macro for class debugging - do-dist: archive building - run: execution of project - javadoc-build: javadoc generation - - Example of overriding the target for project execution could look like - - <target name="run" depends="<PROJNAME>-impl.jar"> - <exec dir="bin" executable="launcher.exe"> - <arg file="${dist.jar}"/> - </exec> - </target> - - Notice that overridden target depends on jar target and not only on - compile target as regular run target does. Again, for list of available - properties which you can use check the target you are overriding in - nbproject/build-impl.xml file. - - --> -</project> diff --git a/lib/ui-darkness-1.0.2.jar b/lib/ui-darkness-1.0.2.jar deleted file mode 100644 index ec8003b0e9623b173bf4e80e02632ddd221b8c7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32024 zcmWIWW@h1H0D*0;@%A7ZhB+A+7<^qr9CbbY-1K3}I2g9N#@nwDFz3o(U|^_YU|<kI zR_5#I=jrAe9HQsz_SyH$X&-N0y^Flwx?1PXoZlQ|aK-q+(;^+Ob0>7Xb)7iapDYQR zBBp&nrDErt?jT|Bpx~0ZT5CmQxP>Mg2Z`1QpAPz5v2%`>ak1BdN0FT`J5@Vp3M>?f zT|Xsf!q2oSwvTRUdt&y)Fa*Fo0CE}3@gQ0l*=0qk#rdU0$*IL~uP}hU0#XRWTG%xd z6lLb7rX?n)7VDN~>ZT+XW#^?9<1@#QBy%!z6Vs8L1qtD#CFQEA3=9lg7#J7=$T6-o zQ#UC+J}oD)B;ME{J{b(+O$;gw4Gi=O^3q@Pd?<eYbkd`wgoFoQzZ7sXU6OK`bLb$O z%KjxHp^PiD{Kbz?=sC9iIgcd228V%!+>QNDt2?|-c5>G|T4Ua8zkcHOzV!X-LWiVY zNk}Pp#d`hOWZS)MkB7I(1xcQH>+1Ag&k>phj~a-VtPhs3r%}mErUvn*$skC+m#l35 z@3jqB`s4_!UE#Ia$L3!@5q*5~ePPZ--clZ3fu(w?@2V!gEEByQE4IK`!Y1}_%r#3@ z6Gk*Y1<iftRlvZ&P)u1grRO9T7sneJ#G8UaykUh2u4w9UFllV&J#ni4!7kn<Yiwd= zoOP=1&oh6L9Ppr!>xohQ@ABPq4wsm&7Ps^iEG#>ve$K*3LT2?xKHbvPj~Y?`t4>W_ zEBf`gO4sBW_vSq7;L)&RHR?Hd`Re)9xxr4tXueB4SoN}<fq?;pDM*A6-<cT18yJ{d zBpMU#yFW1B#cSMnpzxq(<379ky*Jh@71}Mf>GTJ)2s1eYyFJT-)=qx>WnF}t;Pw8C z_vPdhCmU2Jm$@nI_;9*Wm*4W4^|su7!LzpCw~KhPV$04)Hhrf0y_eOPebYXad@YWA zKIH-nx~D~5l^Pfr7@DaOr6vaPX=%yk#wkR5dJoLg_cd-LC=?t?d^ca<e0RKzOKh4< zV2Y{5;=H#@(?9A}+D-0!|NO<Gonmu*<#HzTxvuehJnKyKkAzN!@<&qF-5)(~*mQix z-1UXW@0`zNjy(L}<*VnL&S@^>MDuOM?iqS3*%%mt*clkY$uDQpbMlLeb;}dWQsa$G z<Bh=}-qZkI+^n6N9T1!@cZ@$FwNxv+TQ9_8#jfbJQvy3eJ$8Iya(N+kc2(~bp<By# zh7|L(tmafKxxSK@Lo=5#m`O7wT(cum$l}CPhcNaGPL^aI6Pd{?OvE`gLp_u@Rk-KA z?faeh{c>I9vzh<*yf^-Q?*GjDr|qXT-rrPtJdJ^2+Y(vNf5Hqubl3juuiIScTkM`+ zz^L${b<30M{!=>M{92<g@S^g;jh8=+jjsRx%e?QF`ebwO|G%bwb@Z0_U_1ZT@?X<T z_q-O|8}s4P=|lHIw?FO?)UeMofBA>uz@#+RzNz#1ndVu3`ftW;U%BV=LWiHz%V#sk zeXf?{&Z+*me|Gg@!|dw?tOxF0zsI5TUEQ#H)4I()>sIL8tFxSOwfKAg>fOFBEP1OR znN0d3q+0djqv}FltLjHy9c#sI*6vEb>Rj(XA>6jD?%~<{Pkm-)@2I>IeoNeR>J(va z(HOtPwjSN*k8%Yh`t#X~cQ`&@^7B`iTVqG(4p-raQU#IG%cQ;=2>t%n+TbzKbdIgf zkMe7#_by$RUDO}nGv)i;<yuEMqgeyyg<L+Td0}b0yI7Hx=Uz@-SC{@vF&|!~Do$g2 zDamn<$B9XCwnhJz=cj)KxTqw?OP?3~uDnKT%88DLVl#R-rXQBQ6n5_9YL|)2sxqrX zn0IK{<r}2*=XcoEEv+y~>#M13YH8L#nKE;|%d_hr)}KsM5?#xEE8>+zuTu7YM}dQe z8@8*SoAr15tC>e`yU$cIh!H>SrW2OWlb%|`DO|Q$%|A48nG*kwPLCrz+{It?uirU) zX5EsIPw9S^d!_gn9jr?#TxhsuapV2Dwj8%~#IM+2I5wwv<=j{WyZv@t$N82|+9}Sz zSZDI1C07eYCP+*V5e#_u|9AZL&3W$vd-QgH?^4zO%_7oTX#87p`f3HXLz53J>7L{# zDss)XmTf!p!o^RYmxa8wnY)BDxX(G=R%7jfSi|=3OAJas|8_OusK0Q4V|T_m-HzoA zA$ea<G$t&$>Mpd(I(ygQw${G7YkMx=o;p2il1!H5l<L&Ng||4bCU(kdyPy0dW1QGG z;o*;?JGi7w?LIGh7x<;`<+V+@PnvxX-4r@?bLPHz9ZNQ;Z?#x3rS)CyuEKqy_jUJ7 zITN7fZNA{auJF4b-%A<DegB}yyii2hcde9UMNDBZ$4Tqm6ZluQm7j^ZeA28jVpC1m zZ?m%}<w9@A9iN;yyH<$rsJG}hje{P(+jo76zQSZ%%*D?c!koeLD2VrpXs&Y<@1aGW zTVf6^?dMqjwsXR*us0gLaWckN{8k6snxv&UCN0}1m-td=@y1Pmwr@J6*InB0=)W=L z;)~0__N@LZc(|_1_G{eZkTo}V-Tf)sr11A{)$+D4M!P<!tXsBk-@Pdr2lj^eRe$=q zjHQ1yN1@pL7rB{NtX6s*@_ibueK7vrwyiU&CUj2e-T7WFZ`nuwCG)STUiCev`C;o# zt{bLv?iTRh{5;3jHSws7@h!0)=cJGWy1)J@-9J@SCtb5*`u0CFJ{ex0`9@y5_413R z)Y3cbZsPsvT)P&#MrZi4Pn%^{miwrb*NxTX#qp-KDzYc*1zv0a&U<)Gz3JPd*ogCO zzh7BCyCydI?~mm#CcG6qwwGT$%<pK`rS<967i*qhSof@<<IB>e)rXdRIkr9AK=Hg_ zYbbwvU&;ZCwG+zkOqa|#I6JF=>*$}Ix1FEA=MK-aXU_TeXWD)918O20ex_fsvT6$W zFU9$8o##iXdXcwBIO<!E3VpFZ_vg@xN%Gg9{F>e9U%LCtq07og-#s#o?Ef+I?)rQu zR)(GNYl6K#dLP+e`SkAPIVQhP81MLSaKh>f@6<XB%qn{hO!JzkuBVaODzv6Wb*9RL zE7w=fJEhrf?X91xe5bjY#Z6^WbV=xin@8BEp9`F{;YQ{S-w%lbclISrQM;_3DEP&y zdi|U2vKf1J`ODhhTe|V1jOwFVtL9FXy{vpIu=>~L1ZBo_`<A2MPKX=Mns|+GNqeTw zQ+CEA!GFu+J!`}a{bnf@@jdzNRjD%Xys`G|roCT6H%(AsJIvzsMMt*s#=$qsHpmKz z-C%g-8UE0ybNb#2_0{{b(r<q`5ptKQ<HBmyzFDi^8ycr9w>WX{)LdidH#fPSD<8Yi zQhn$TyGp>Pmd&$*JX$X;SbS;ykJ8ZM^4F}ZG-5T*e(m3CQ{=Sti$REY-!apZCnoYH zmHu%*(LNzgb}gT>@)2vx3)9L&G$%fJ#ok-kC=mYPK}b{TojaGc9!OPB$js#XeyD!W ziX(zQzXV<19dPJrfraaNrY@6t^S3Vk{$%O5wXgT9Pnb4oV$Iv$@Bjb!!+H~tCTrnU ztJD|<28MVB28KxTYsZYt^o*R$^o$bS;{3FdcngF0R4|A)#N8b4fi%bOmM#)%m@;d5 zcXG#(D^KL_-@CUiJUKZzJNV0=&;R$=6u<s+|NsB%pI!bHKHi#^G~v<onFp$sAK3=5 zH!oj3|FqTe7B#dA|Jbac^>GXg3`q<O458$EDKoD)73v)$(|7|gAlf_2px$X|X_0^4 zFJn<~Ac4Pq_H60dQUZG}8a^_K)G1j0arZto?&cPw$w&WdUq8=mYFM%B*UmM?UKvbi z9=e;Av8RNAfuWRY9x^tFPcyYJF)$$7L%k3W?f%;q!^35B=9hf@^}BaYim!TS(VqJ2 zaip+V-p5H53U7_Foli-+UAw&IxWDd7pX{9KQ&WCFd!71O{Or>=zLEaRH5tw(;%b)O zGiTVSBf!8QD9FIzLuR~XCg<lB#~Xn`ypgF{g^>xkGx&7IPjiub|Bt69wr%81j#u~o zrW>6q9VFPR>bdvi1hLfkO?<|iQr3rTlW=mmrjqTpNzKJ*nxx6ZV>cvw-rnAQ{`=?f z8oB55s^ibczq34FJ#T&S`<<L-FFwZ@1WGV4JlJGlzL}Y!q2B9&mh_MFKAU!I_?;fP zY2zk)ZEfA(`;Eh_<v#s4?Bm<w9M8mY*nh)@n_Fy81Wn%d-SzIFj!(4@U8Fc>&5EC} zr!3~MpK6%3-2KAs<r{u4nOTvY?DBK>qbb)#^F{eMHfbAhXso^PHqvqG^OAR#%I{Ac zFMr1~Tb_ZzW}{e|+BZf0X>)?_sJ*UK-1{uG*w8=Zu<eWMI{x?XRXnQ9KeJmY`s-JZ z1xIg)Jw3tSl>E`yP3io#Q-1GuL`yZMOz%~>{gu&w{@1TxCLH)<_9c7cPJPBD3@6Il zweHMK{xkD{_rkM=QZ_mdHorIB@T|9M)#@hW&rOXo-wV9$+=El6?X&TZ{4saQ8#cDj z6L*N38vfY4*|RE#HFrbKjwH6_lbY+EEIaFaieK;Yge<$Ir7c|xb0T64uk_6S!YIWY z&$NGvNPTk(la>CJEq?17+NF=pX3RDG8tAkn`1HdQ%lrQaUB0^^?cMFS?E9O3ZPBZB zl4FWVRrFC>Qt==m_}L-*qnmzOsGO=xyR!IXO~~KpYi?J3)LfSLYh#m!`>LJt$KK=w zZl83Q;eqA4Chn|rj|+Mf%<T@kvmV=bMLz2Pwp;sbjI{q2^?I_dJABM`iCn4W_QD<i z?MvRdUORkG@$H4b<sBxna!=A`y-=%enk&5}P-f|eFDc(d{y&lYUg4I0Q()%;uT-wo ze)q~PGCUu5ZB+U3J9Eb)+nuugxu32(&o^4F`e}8Iu!Q;SkQ?I5dAHvEv0fqiP<MjW zRnhoe_wI0Zsc5-u?Y_mO8t49SrF7IE;kMKI_1s>^cgg;}GO@(wuzuSvg|8OoTOaz= zL<$P0|KDB2y5zdh(JN<vooD>H^NP&1y2~#g)bs{@On<NQqBb^dTj08gT>iN36PxP< zPxsGij$9mC>Av|FU)9Y>uWjA)|5TK0V2S;IT-sIrCSx?$CK>aex_b_IK2c#!IJEm_ zQ}GGAE5VOvg*x+c#oNu!pK$fD&)?gVHXYuqakufi;cTZ365a+P%D2iH%%rli-4?x5 zaOZyh?Wc}l0s9>D^$hXLx4hPV`N^a&)^bPs76~uj3VX*e+5J^Ne?2R=cwVWPaXwQa zgl%&7$@-=vtgibv@^7g*tL@i0NASJRs~yw)?_Cw#o}cMG;dfpCK2fJNDoeh8`@{Y6 zp2*#soQqtx%c^@lD_F^MTzw;-{;XqDGqa0*BCMn8Ium?(dgXTfU9eGh-J7Nz5la*} z?tPZ|RbbYC+p4XzUC~lD<@*~`U)k;38vGmb^h1S}dje17Z#Q%ET`v1KU83mIiid8( z6M`qZ-pzT;Dw-p6?#h>AZ`y>9FmAi{eEy}lpc7^8i8m}SENZXY>yy&Fox%F*UCl?v z2H#G#e?F|bmi^78U#-ozFYME)5dNFJTe_@EKfG$!EZK9D4cAG$Q~SN+>r{meJG@`9 zf2}dFnej*QXZ)<-YxDiTH^e-S54f{Lb9GnGRKe;g`DJe`r_cVk>jU@qb}w(o%{=eQ zGS{<u9i831>Mcw8Ufx;nE-w^_2@O5-JS+Bs$3{DEe%r9USv?c|{M(XybpA%>%&{|M zSsfc8bxeFcyK45SrT$Ue25%SZUklS&aWz3Ya^8BToTXcy-OR||QDtgq@>2JUx+u5C zb5Z?(oU;+8hjKT+`)d>OSFq=J%94vlG4gK?7+bO2p2F;ux^l<-1N$60f6V1Ms`*8F z`-<ZF7gh#)e=0wFr#G2h>D1%iX<j-7AFlby-3@%0n`7>%k(+9{?r(t93%1t|EvFZ{ zx;+k=z2wKH&!0D%g!lbok9sp{adg48g0}vb&g+&uX8SYSf9=1A8b4he?+19FTJ>VZ z{7(iV?+!4maEK0RsxG-|t#@O(MfW8?)9z14)%=xabLeyM9kXCP_b0g_CDKCqsbIu{ z+DYv@R^MIC#rRvean8!jQ!dl~Mdy2dIc_>3<Ffk><7FNXC$68+{j8#l|KB2srVnWv z4Z<B~duE#`eXIM(uNmd7AYbG3!>#4*i`hae?`AUn+MH+V80z_N!4u{~ya6j!_su&X za*gjyyGLhko1lEQ*O9sXBInoJ&Utop$+DvpH(8e*G&wyp&V{A=f3R{`+Upd@+^Ji2 zCYEgRy5GTa@Re_kh%mR~QK@~2i5tRn9PTg&l~3TjA^q^^i`g>-rH_CAwtSCY)%?8u zh27PMTKGj5T)%Q|`zbBY6I&)N$~9lgsNwN3`=>yuscBO2ORc`L=TFS%JMYV?PhKE! zoh5v^!LHd=T9v-1OB(YdbS@olbzwY}+>z5D@6h5O!jpINdX(vB<Lj9L%vb*Hd0=F} zyJPB<e`(w2Wq6t2lysgy!Kq=D@B9b*PCm4IE)lA)&AR!<^{slp<3!j6;=Hpy%$Tg0 zbmMX3ob}i4>+{E4ulW&s?^ga{c^!Y7#NdBR7rdFe;L~!0!l@43+MhlNnjhV}U-n<` z&cyGxZ)d+Q`y1DBrvAd~uhYwzx9c7*o^hBnZtD}vpk2;!59Z}LzJF7&HddtV=iAqD z-yCdbmB?71G)UcVqpmb(>4tat8(v;-F6a0vpY+u{FepoT@~Q_9Hr!6QD`-4(j#SyT zp68a*@#}9rNzi(E+WY9{?~B>%*&oz>bypH8I{ZzqDkyK8D~sudub<!F-sZXMm{#KF zDQ`Ld#%xWHG2VMpZ&h~r$%&8Kwrmn=6#jdncyhzN$LTwZ7r%{BDBr^v6&WwO+rg`h zN2Xq_Tl?LK{r?`FkNY0{IB3eWWy+nO(mVBxLw)A<3*6d}w(EYCBZKG)mkr5tj|8k? zpJ(vN?_*wLs?!$tqg(AC9nJF7J@G_;<F-ALHgo2k+?8ZEQ_Nj{T1@S+J!KBh0!ywv z$UNZjYn$|w{j<;Iil23xUi)pQl-*j}HPfZn&c1q=<D7|-Uz*JPmv=<F(z&i|Us`jS z<<!KSr%xA0EYD0nrf;KebxdlWro8?ae)}D_8|r#ytjt~a<mCM8_rjmd`EjRF)0Mei zRrT?eC`+~F+H%h}E0lj1-_5<d|C{#wrM_p2(w9unxg`4c#%n(gp`Pv8*ZKBDZ#h$# z=bZG{dWNXZoR&N1R{W?~(N?LqXB+Fp1ICxVUhJz2H~pU16m#dBoBev0+}CgA?uEG3 z-z>5`F3`1FUHihB58pc2e{0<_mKD*?)46d<>wJCw_0w+ZD>WCXO*c<b+$gbXW{q;0 zz9CCy+M{Xz&9#MQv|k7p7hT|FYO;6QF2ygAo2Pm-|Mq)Rq&2&G!ONV|gdDSlhs&2Y zr-vSTC$6umCA6q+u7%yz*EglKpS|^ddg|?U?l+>|r(a$Ycv|M@AQg4G($sCYE4QuS ztpvW4B21gpFR~UL(TFI}etJ>h#omh42UqVFYOXK6_2^K**@Ap6$2-De59@_pQgdf6 zFH-$B<*?zhRiz(IpB(<plqJW#`?F@5-4uZwnVw}c%<WEp^6+D0)|Kh%+kV+nS%EP} zOW4ymG1F2|;K~KL*SBV|%@9oG-XXQ>>Yvje*1h(fuhH#l>-6MTSnI5e#`O$GF0(kz zldJe3)b?=mIoXgU%$IMj50`w(8^`netlg1-YiTcqeqPOf^<v$$TZM*iK79VG&o6#Z z{$4N7x@*&K_w00^>*MfapQX_S({(CyRSsV4U-*G}=>*+dhgR%}GXBy0&ZX;J<pDFl zRZVqy?{39u&y%{n(nC!-F7p4ox2g8i_P@Sasj2!Pp{4xAx!bL(A8H&J3fT7UdRkq? zq<lW?_~L^B<_zVsY2u=6BJ1|dJGO4)%8yOY1Me=K%*g+R&2CDBzmUu{#WWwabD`}9 zFJ@^m?a(*d`qJjI#-yD`WBxu{I&&*?h+1=IOQP<9^L@=1Snpmv`A2u#5*y_!B@_DC zCge|?o?$FlU~-l7$ZHqzMpNG1Vn2Dj7wlu#pXl|Ye;VI}bfv>jgD+|>4w0F;%Q<hK zV)rzml~>x9X&A^#|Mfp{;>4YRr!k9l_ozm2=JxdPU+I+&JfN#>$nt#EUf#U9oLg-k zGC18mzMApwENzh&y1jgVYbz`2S28>iRr>tu;oJM2mhy)$2QF_ZOS@6t=4QAqT_nhx z_vxLCiup5z|Nd<g5-k*YFaFwfmi3$R_#@u4gy#L2vMp|s=ohiOOV6En@{FtIqZj*x zgERm5IQNU2^p+jz-Pbu)XrV~a`G*$_ZaxlCXa0TG{ghJKoY{M)?1_HqzP0~+SsZ)J z#NgKnM>cD!)TkXjXWi~=wYF`^!Mwe)=^oa<L;6p$f8_nEQ$JmLMuq;Iiun5}f*+pt zT>HM`flW-o%GfDWy3dsLCL8n5nY>6KXp`-nCGXV3`yWK#*sFByKw#C4lhZEW)i*0W zUjFj3tvEN^1;fJa(f8IanZB~_bl`-dh-}S+A687B_ES7-&RfaVV*HPsuL(Eq7vGVV zR#0n|ng41ngOq_;!r$5cOeWF%U6$FuIR9Qqte&;?yshKkjnfa6ocmaHCaisdtj2D! zT5Fp%dRtgacqSxra;;3Qjy(PQpZIF=yEj~X7%S?RfB008QuMV!e6?sGWAleV`)7OW zSaer?dsOIiWaYn&+t@wM-evpuxskcO<UQXpX`#I<ckF+=fBGij2XZ=w;;I|ur~SG+ zdzry@z0R%cczmDsulcd-pl52;S%yR>%hlS)`lf6C(lQRb*$}~AnR-NyokjeqgT+3j zvV{lx%*xJIZd>BC;z>#3#|IHNBs*+=B)F7X@m-wa{?762L+70mw{%5?9i=7P=V+=* zw4W@=FpxQ+@qd=a=30TY=1pgxI7!b9u(#r<fBIzcj8hd{5iDJCH$BgFmK@D)jSy_! z>BqhEM$nhZFWdHY-j5c$!+g`rO2zTC-zRlNUSD1LlM|yJZJz!nM@^MWtz>uDwle3% zQ#fxn|KFD+d-Pj*q5tpJ9PKHq)HHnmZP;)0_;vl$w+kcvC+d7vT7LTa{jF?gPrl1x zSo*C|Uun-BD>2zU^ZEVPus<)dvfOgc)Ah}<U<szQ`TJEC$zCY_{NeD0io`{73e(U1 zElR3M`#7)hU$@cM^XVIprK?W;cW3|RYaVGYOP<7?I`sCi_^ai&6sAtvHM92fmTS=) zq&KETSe`qw@wU#U=xwLppMU<+uqLRm%jcaM!-j+pM$cQTR$g_VdBI11qt1pd)2@@t z4gWeG2usYI`(v^^|Mm05x3g-LCrR#^YG=%mYPr_<*f|$<_S=Hb`7T<ibeFoV*z+`< zGdU+$`N@}+EbCvcd%sq5s+X#%_loG0D|b&X58Cr6Tl{g`>EAB@nDb@#DK9mj(_Y9T z7dd?b>z@S0)RY8C?|07&?EB1WZ|`$EA!}T0&z@hAKc#fT^&Z>v2U`7|mv5UL`263c zucyki&dc27c&sfgnkBSEzH$1Ng!64pHyo{Z%j+4{*fmK<-T&@-so}fx?2W8(Ow|Vy z*;MxGHl}Oe3o=_?_GkCHJJwNAhuI~c?O(U5Ph<J+p2oe={9>AG62ENQ9wE|EWZ}sg z{lQ{WS!Monn{_|8Cf~7^SI|opNcsG}zx`<BmdK@=YQO%Y4Zf7J=55rb%BX}%l0~XP z(qI^s$ew!Y=YHcY@!m%NCEVF>E!1ahd8i(7Bj=V}%1Y1MzZc~ty8PT%pv24Kdsg2g z&U#(qa-r3-{qJ|&w!Tq&$!E`2!$p5$3s1f7+Rnw!a#K`-WlGqKZ)+BuDz^GQXJYx2 z$JXU-XZaZz=0$KD3;&)V?tM-(Z}QhY6XHH^+Brjg)kC>2+0&Ni=i7YTWBx35;@V$T zDi@M+x{IE$AKdsuQh8!}cB*>$9o=4sO{d)^z5Ug&{QR$~DvyLZ>0euK+?mc0#PDRd zv*^2XhW~sXEWPkdf>%!L!_Dtf5ue>$uZA9+S$WW*uX=~-{KYGcyyNFB*ZJcYRL0!= z)8kIpEQvoiZ>rdCYch*4i!p2tKIv#*borUuQ}*eZ9;WjzSvegIFw<Elk#)@f7ejBO zeq+2>*M3JM#<}8IQR?9b4)Z=f+pulMFAc>@E1woTxqQ5S<;%PX<L__3HOD*FMoqU< z<Y!#BNkC07$fjU}X7R)MNjGa`gi`H|UtLVGTlKH_TJD}7BEjZ=BOIqFU%kVhT()gR z^vOJi4>I8gSxui8TDVP+p8sGmQ*!(({<Zbdx$$x{r`GK}wuI?=;$yj>{#|o!Tip3C zZ}na2b>jO8WiS3&yUgO_FEaKmnQVLT9PcfSzMzUKqw22uPd(K(i#O+V!~`rgYTa~v zu}u_TTgBZ7p+A33Vm{8h(|6qL=j(<3Gp`E$4Bf}sGuv0|P50%tTX}!NC+I$OHJJOV zOFuUM9gC}w=%QP$xvfI$7k{|ItNV}h@YCu0S(hf??W=p`VKwiexO41;syVZ76{zi7 z)6u#4f9y`COWB=CuhRZLZ}=0F#h1PRWl6z4x0OFOmy3Pbr)PXyBYe#^_Vun$BKLPZ zbw7J>&BaxF7Dv{y?|q}Adi$t<osCsQ)4KnUdlyZ9)1b>5**E)-Slk1ZqDf2!5AWt2 zv`mqIwX*Q+s)cN=`t#44pLkWc>|d_u&4-aw-W~Wo!&fn)M^&Or@U1n2H1AeZ<-qa@ zi(89-*G%Ks!F+CZc*FYOTVJP^R7xFRCv(R*if1X?p7{!^`{MW3)PA;}^LdZJmggn{ zTFobqKCyRv)U@dS4fd#g&qSBIoa-o8D~&m={{B_R?d@AsPt@*rzt5!@CUmK)`d@2F ze%HG<EP;z|_X(>O?+9soJUOCW-1qUREn6+s*2wDaciEuU=Ei@g?!pbe@G{33oge|0 z_mzCL7PF7%${s#)c)}dMP1WCKE$fSpKA`Tfefp|S!DAXvwns}ZUUs?fpD~YR<&}cP zoF`VET$H!%V-uGdUwT$ma@k?dM-0)gKl^9uYo_d8Z16@V<D&EaIJHd&qZ{VFdMENx zQlk3l;hzsDU1KiG{CntNZbrP=p3Z+;@A6t7ovv*gdzSC{Nr`Zt^2xP#et8K*+)@47 zTxBOA=kssEAN{kMug@>9c3AgOUnB3*lu*}Wr#fs;nOlFGbK18)_DAb)=cP**M6#9d z-g2F3>7%o*SIe4q-(&Or{xX1L-72kT#as0<mPE{7+Ag;`&h(haa`nT8ZqxqhnEB0@ zXu7JW!~3}Vdh;aHr<c^%vd;K+Q9N5)>`K;#UY+ydjN5{uKId#PjoCX(V%8V2Uz597 zr+n@b*VvY}M(W|V$nSM>tNw8uOE$WcA-Rsf?17|gQ|>9og_}a|_$S0KaQWlc_DJMc zZ}gR&_9e12?)?!gE}wpqS@7vcH*Zxji;8UZ{&y=rm~ES_FlE~&nd@~Lyd}-03WuIv zP+DBL$~UOy=FguIv$Wm+GV7L|yr^rDZE^Vc7sc>Ph0OoXE)V-(Fr{YEg8UV#si7rT z{3|86$`cqu7U*gnwB7YeR{V|k9M{a{vs`~BO;(@i+ak`wo;-&s{hy)3CY?DGKXK?> zusi8|=jyxA)`q{G4(G0zq$+v;U%Or9*JCM<EiaYtNCq$Ya3cJKYq8C4_WD2`#|mSS z1Dr?Fj`>OnR`37OF0xj20>7PNjq;(gFTR~u-kC7|jodzK!77#dfKQAM*;ZT;iuX_8 z%4UD&yyS@4;f{V&)ko*tyPjW{^ZT3>bor6TP1)TEv!43sD>d!?zfw?pbLpl9+fGGI z^RS9qn(xw-@Kw#OtFv`M67T&D1`*m~3hx+KTAyHf)B7Rmi|?6^-pAFygX7fq`ftC# z<EU-op?0nd*;&t{Q>Ut=M0sA^Hv1BT$dVshYdUt#lG?blMAUtE@u%7672~(=Hw@^= zZdx5Iao5*&>Yin(yAGJ^h`oI5w20xUp^Mo8euYEoT5Q|jWUrm|bLMN46^vQ+aRoEy z#~$(Ws^1*#Z?bguo1TUK9*PcEm-!dme^M~NxM$V$sZEh@UPn!@)$d~FSg&eYapt6e z;hT>R=fYpVpU%E6+wPBE{@d*j`KPJR+o1VBDBzn{z|Y_rJG>Sg6|MZ)G5gWI`+Wb8 z-P!Q_?c1%TyX*8_p4q?n`pbKF<Lzk=Ezdk;Ss(RDM)R(seu4k?1?6QsuIX_d{`0L= zzj}e3uT|gNlo^}i=Lrj*3ySz|e&fsQgVrs-_&5HVt)aPfqGxD9!HwJv?>c7s`0-k2 zANxF~cYSznk-^k2PnSNr`TJt?e&&Mxzmx^Jb|zMf+iIHMR%(*E@$2XJ+}kR#$x}B} zp8D2Ow=T+{Z|1!e@vB>RKRHq892MDlptJ7DPEUvTA2;9Gd9h4yg7rOywQJUQ#VV*; zv-R0eJ}O%NB)<M*`ug813pKsGFHdy&x!Gm<Os!?-+&OY1jPK^}RcPP}QM$3wFG=GX zv%f^;@`~*Tj1+GzesoLzW0L7|v6N5KBcku|$oZX5i8Y+>)4iDAd!1c!oVCJd4Xf-A zCJ8FFw|PI^_kF&tJ8ki4yWcUq^RLNWJKcNj?5jMMbSXh~<G%AH@3@W{v%b0=v@etC zsmHcYp90rh-eUMze4emuGVl2*{o=pc<?rM=*t?y%Vix}C$@%Q}+C_df?+#2^)VP1r zq{6JVGLtWh@_&w;u={uS-PXJAzo(wRv@C6>@g;AwmtA#lO4V67kKNvy&3;ce>Y2rM z#f|@D&v1$PIpw8?)Yya^wh@oJ-Q@9LW~ORM{QlLms?8ns@~Ril4{zG`wTwSsYw`Y^ zopX{oj$WNCnvqsfeWbZo^xaIpE>Ux_oYbk$_iullx_I&xk-*8Pr8iB8;JNCvPjL5i zi6#@{!qfj}i*lZEezCfnD`272tT^wx0>9SW^jdPTR=vz}>RH<hCEKhF%w}JBxcl<K z&02}yyQd3@at7}AlbQeOYfi7|=Wk1ko_>4H`mJl}(~``NqTLD#ylbECky?CrQR_U8 zT!Z!$uEv|2UocrFiRkQ@`YD6sOWYo#53k<sm~!1Jw=i)<+79!n3hy|(KkVmRv}xO! z;GII%ryfcKU)}XX>eItoM$`V*yFW#&<-It}_}qfeNY78LR8enk6ytL}e*5Jd!3hjz zQ#+T;+^}U12S-*$e`&5S^O=rKtTDV-v;L)4T>rYvf6CECa*9Q@tDSte90+H4l*y#% z&u>$~dH6%*b3Uz0jW6F^U)}SGO~37LntYN*_U4k#Kd($nOTxY1?vN<^@$=vG_U;G# z@7>tKU!TrBc4x7lnnKNe8Oaw?;gkF(J$P|E;74Q739;P7keIcSe;mt|T)*2SNUMiB z+MAc>t{3(1eH)@OS#bTD`tRR1$)CRe_066sLInngtV^E1JtS0Nr@&y*9C!DVt!3lH z^wp0qCajQd*v+@On~Rw%JkCG)`i(0U2S2ZPcj;sUdlj?1*BW(BzS9E6YQoP~IZKrI ziZb32pM9%jUZ%*&J4x&6K3_U>i&1OxL6bup#2%y{cYM+G?p4Y^vFM<Af>~A`?#w5) zpYYx?lfz=xE0#y4i@FcYYK!fzX;Tfj-#pzz^^dzZ`w8QT4?nGZF(pu|&*!e9`TYs5 z-kl*?&cPxx`g;GVr=+ChtteV|QS6@3niey+W9+Yv^=dqrHdUgj`072j?dMve<`pn3 zeE0ZjL*7|Yt}oNv+W+md*|R@{;S<-y%C8^3y+1Oi|KZCO!A{o3Z>*gcOI$bRTDi2X zD9>ci`7@pW>YO{fEV{mTe^ojw`)#-WBUN8c{~E7o{gYf(-S2|ZQ;LdN_f;%qKJmb( zZrQ@)+_T)QAGzH>;?)_zwexvF#*8<Gt0p)8eWsi$XnpQ%oY%dzUl!jwo^HLKdEJSX zr3Q~~iU`?FPI^A~u-e=(=SvCO@AVlknOnQ+_><-zZFST3pXT-1Bks3nef}nnA4P7j zt78h}^mbg)^E&04w)@z|ne690135Hr%J~I-pS;@rgYKI+!R!Ybwr^5SzkDY?d)MRL zUtZ4ZW@UacW5;dX_hFY#hwOi<;bFOE>y(6wE1swSaGRd{))U&z{!#ID=Yjj&F~-I_ z?B;GU{~E@?D<Qq%-&u9WS!>yk&N2PlQuktm?b%z;=Pmem!#mOHd4+A-YUc}lQ)0XK z$;yR^-(s?2JF$VK^~$EbYo6Br@4nidm!q_dVbA{Hib@NkomB_AuXe3yaQv}C{&Spt zlUQi=M+>z_A^#(8GcS3T$Nc~2fkx+D<?N4nJMV?ux&Q6H_f5_M{%JG1g>LYB|9$5h zJR^Ggk*M&tWuM%`YVJN*Vzf7{!C>K>tD?!rPm9z}ow*{%VNLTMqojW3rtTsInRvn7 z7ZTj1cR#a<4pIy$+O?sgK<5pQi(HMtA}iVUj8n?r7d-p0Fox&tw64wty*<w7rU>;M zPO&nP;7gfO?>ptD9mi(Jn`uQ0d;M0(%eL$<`V{DsYQw6-<huTi%5#@pkG49k={Oj( zyfr3A^Vi7|=le(A>vF$q%u$t{v>;Xe=i~`(%ck`|@zDKv)4R-UvJk8Au2}8p-3tRx zwY)i4AHT6L>G$p(%l|rU6ZHxeo}yNNBYx(`ulqlJyRc@t$F!=6m!H0VAJzOUrQEC` z==T9}!MHrxZoYfx+tsf%7hBGiiF&?7sqC>P598+Z@j@5*UhJ&=k(jZ^Adr88_wzbS zL%Yot=N<mL&iwU!bHwA#lf3HR-H*&x*<4~(q@Vim+e7ZJ!MPK>Jnx>_R~hwM_eO7o z@fw-*M>lfCZtC8C`u+LmFA{buEnL;gg&86YDrSCm+I!{IVxNp<{SjgjN2QKFxjf^a zLc;0|Tm1f<>~DYld}prdKEabb_q^sywrrYnO)@!s(d6d09mVY#vXhQlDTmzqw7JD_ z+cv?XUm;D`ORj&vHpOe{q*<z0bd6rUdm5}6_i<}?;o+yXO8*<T^WC3#N&4Jj3#R@x z-Y1yqHcT)w+R&r=y?BSb`|N$W@ybv7X6~HdY`(|*l+}&wWAoA<99q6G`1aWq#q}?% zQmv<^_vN&FoZ8D}%6X~(fOph}bZ5sm3+CSC7nih?KghfG{cokr1HTuZy}_j4xc7kp z^Q3#z4r~_9*PI<}{Vz8BoviNKhs`{n<HJMUr(BLbcHrJx_HL1D235DCb+}wC=PYT` zt&oY_y=Qx|-1R@V4ByS=7np9uvFYdc<A)#V+*)%<MEGw#>Z+YqTjoIO3`!(g7#kZH zU>}q?mM8JsDsof)O|9D#x-xV;U-`Ce(fB>7bjC#0>ZO~G3Mg$-i!`2OsyJ!m842Gd zhGlHYzrVfv{P&OO{Np>H-@E>KdiA-_^Pa!HQ=PX+_mz!#y97G}!-H*G47Rf)mP%~d z170ezwanu8GnUi;&sof3-TmLNk86{AEK|n;zYQC1ZnHlTHofqJ^F62TkM$3oB)Dcq z#!T2%7IQhy)K8u9dgb=~70;LKbcqg5Il6n&mFrXUMfpDzY0C%%R89Q7`B2vSnR|+l z*#-8$zazQPf`OspvCdgvS*LiNolAE4n|^TorE}_e()<;!6_?gW&fT~7<B`|*cKE0E z-Fkgd;q*t{PZRA~PCv?Ta+tGr^6Xn5HyE*<)Rp!wm0*}>_xk-?)h5=Qm)9SCieu_% zobbNy>J97TESnmpABsvct&BX7em^@&XV#P}VXYdUogC+U-{8H^{qobWx;_4pEOVB= zWpC#axFK3vcw_VClfQCW-^y4TEcMY#b#Gqbdwcd1`8#O~P5+#FT@b3g^TQ9J6+0O| zGMk8PW2w_r{m6EZr6hJm?(8VWeiOef47ZY{7qxaSpQbF}FaLk(w&jIq53N5gU&i_~ zGxk{v6U&ZMP4k<)KOZ`fcBZx7>j~EejwQ^gXExtV@_GDx&2N{Jn#<yjZ9J5rzN*#! z)}Nfh{!M=s9$0RhB%O8ebp?;Uz2QlJ)?<53B;x*WyS35AO8YZ-sYJ0)g_r%SvdrgS ze$>CP>0Z-bd)O-R_xlGgckSsoTe8vjn@e?h#$=YDk1tQo$!uI{EXUci?o(n=;?`Ft zml)f><k(6)D^B<1`Eb4DaOFn}+1nx+4R)#5Jj6nNs~Y8*t=^=6PU7Vb?ij}{ZX(4m zu7%XStSeTx=vp9gS20a}PKj*i;=BxQA1U4ae{@xZpVxf}4nOs>r@`V=)0fA4wj49& ze0tPp&EfZ}L?_f`n*{6swr79xKB_w6yYKeNuT6tY8}_c=@V<2CPq)^fUgip2qx;WX z=P(rY9cEj4%zWD2`U}U;1?`Ic^yK*BX4MzJ?Cm_PF3R1An(=mvX2MHeKQ&ctCgJ;M z#pXGGQJz2R$~vjcNk6%7{ApS%pDuZ4+9c_juCI9a_1_hF*0Ghz`C`&v_Jqd|zlpJY z;!9eSkvIQ77hmy_UmrL>m7m<PchX9a=Xa*IS03$9zS{U*_^C<3>gntA>)H$Fino26 z$L5rJvGPTeI!8{y8R>R~)z@o;o@jKrgcm*E%5-Vnx)$f`>P3IPSASU>;3R6dcm4PH zj_=D}>YWov-F276QEPg1sfyyv(v*uj`(oVNi!U8J`N~@*J1FAJgSYIyvIe5zKaM83 zDt?%E{X_fapEhP2ePr01P6y_lcRYP2Gn@Md%Zq<Ox|)|*I)9X9C!fhVrrB_4LbyYp z$;_rXvvpsm&(>R!^k`#Rnt7V}9K}AF?7xgFWtY0<l#95>H0e~oynfo%{0EoeW!u<A z`<frGui0rAbE)otUUGoR7T&k#+e|O-FWZs4?C0l{w5%J6du9rI3BD`pza7WP=)G%c zeZcwl15O_DLI0Mjmj3<eqkls8A?wZ9wmqwkL`ar8{Caw1Zt-5p1?;;E>UXT+F**I< z<%ExM3gP>9uDI6t{lfhPFKuP{j)sLFuUmJKxp$hxhA)>Mo2)u6DfvZ2;?@nVhNIVh z3OlbjHg#!X(#NWTu4y&Lrt~UYR(zHe`?RS_cUkAtpIQg}qN?ZhZfna85O){6?^GXT z*uZ7i>9lm)nb71nX0Pv^cit+mXi<`8rF;49K|Y<$!7E}_4Sf2#{&K$IpX77nWXLSH zy@maD-`n3YZ=P+R^!}YurDD<^JB^o1oZRK-PT43Mx^Ed@@QzPm+b-YYe|k`EgPzM0 zrl=en$F0788us?`?!}LDDi)m8Gu_6T+?()YmhBTiyF85zKd=0fKX=JL<qGfDCvQ%j zYs>Ukp6F-Nz_rC$t?Ed~{>RUL2<1m!TbdWS@x~k11mUO52M=UCS2$(g#xbqc_|iPb zRx9;N&fQkESpo$Nj3=f}Tj!J@x#R0JkNOzyPQ&UJ+vGL@$-i7XGa8e>i)i#6?apaq z+|e*&%@56Fr~A_zE<D=ma_OM@j`)-xeT|Zhw<hal7`%>?j+raN;AMH>KEu?=hf*JW z1m`Yb>e%ul&Enz4X(@kxYIHX3IxJ~d5>;hmxV%{0XY-;j2bFKK&y(70bbA@s>s7f= zIF2k1{pBXovH0MXaLtt*A&Xv$%bmN}#^_Pu^ooBIL-pdC4Cdfsr^`p~{oC^0bN*#n z^SqBfvpy*^f1PdpBRq2HhsbM}w!D2-!XT+wxRznj!gYQbn$bruy_@srS@nr{;RGg; zXY-!C6LS0-;J<WD=4{;${T=Q<cL|+zU^Qvv{lLuey|?eE-tU_$Qfr^t@n*GH%@L0h zOAy~W&FsdTi{jpI6?ZOpIr&mSK<`cAH|CXZp2s|%mHJdbto_%v)cxH;41cmUedD-= zTx5!EI$mG>_510;*HQfYwQu~$XK4`SP|wlcCo*lnP|!~iy@gUKm9CD8pO&?p-+p+% zq4}%I>gwFPbqA#9edW*E`|wiUg>9iOdc`UiclVjNpD8%Qf9taLo7u7}H}|_4@2|ak zS~AB$us?a3MB1C_&s|(MiC$;sG5=d#*q6w7cn#ySQ>WglB$@Ka)Jd-~&(fP6efr$2 zpEl)>Ux(g~DG{x$T$%E%?#zYv4sX^sYV1gg`*F`z|I^uTCmy(MV{EM5U8cF+BGqSK z7js?1ZoZz>G?Uxz<?r<@3-3(`3_Mo6P_8ofQD8NbPI=yz`P`2@4O~`AtVk5=(DZW@ zKL2Ec>Ri_A@qcc<u8XQ!_34t2h~q<@gHwafUir(hus0+1$9i$LpvF@b)z>slZl-<U zRQ@k=Uo65bB;Cj9xw7A$Zôhm(zp1ts}q}Mmm?v-CEesx@VW&CU_v(WlU-D>&D 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 diff --git a/nbproject/ant-deploy.xml b/nbproject/ant-deploy.xml deleted file mode 100644 index 9bc5adf7..00000000 --- a/nbproject/ant-deploy.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project default="-deploy-ant" basedir="."> - <target name="-init" if="deploy.ant.enabled"> - <property file="${deploy.ant.properties.file}"/> - <tempfile property="temp.module.folder" prefix="tomcat" destdir="${java.io.tmpdir}"/> - <unwar src="${deploy.ant.archive}" dest="${temp.module.folder}"> - <patternset includes="META-INF/context.xml"/> - </unwar> - <xmlproperty file="${temp.module.folder}/META-INF/context.xml"/> - <delete dir="${temp.module.folder}"/> - </target> - <target name="-check-credentials" if="deploy.ant.enabled" depends="-init"> - <fail message="Tomcat password has to be passed as tomcat.password property."> - <condition> - <not> - <isset property="tomcat.password"/> - </not> - </condition> - </fail> - </target> - <target name="-deploy-ant" if="deploy.ant.enabled" depends="-init,-check-credentials"> - <echo message="Deploying ${deploy.ant.archive} to ${Context(path)}"/> - <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"> - <classpath> - <pathelement path="${tomcat.home}/lib/catalina-ant.jar"/> - <pathelement path="${tomcat.home}/lib/tomcat-coyote.jar"/> - <pathelement path="${tomcat.home}/lib/tomcat-util.jar"/> - <pathelement path="${tomcat.home}/bin/tomcat-juli.jar"/> - </classpath> - </taskdef> - <deploy url="${tomcat.url}/manager/text" username="${tomcat.username}" - password="${tomcat.password}" path="${Context(path)}" - war="${deploy.ant.archive}"/> - <property name="deploy.ant.client.url" value="${tomcat.url}${Context(path)}"/> - </target> - <target name="-undeploy-ant" if="deploy.ant.enabled" depends="-init,-check-credentials"> - <echo message="Undeploying ${Context(path)}"/> - <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"> - <classpath> - <pathelement path="${tomcat.home}/lib/catalina-ant.jar"/> - <pathelement path="${tomcat.home}/lib/tomcat-coyote.jar"/> - <pathelement path="${tomcat.home}/lib/tomcat-util.jar"/> - <pathelement path="${tomcat.home}/bin/tomcat-juli.jar"/> - </classpath> - </taskdef> - <undeploy url="${tomcat.url}/manager/text" username="${tomcat.username}" - password="${tomcat.password}" path="${Context(path)}"/> - </target> -</project> diff --git a/nbproject/build-impl.xml b/nbproject/build-impl.xml deleted file mode 100644 index b09dd12c..00000000 --- a/nbproject/build-impl.xml +++ /dev/null @@ -1,1077 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - *** GENERATED FROM project.xml - DO NOT EDIT *** - *** EDIT ../build.xml INSTEAD *** - - For the purpose of easier reading the script - is divided into following sections: - - initialization - - compilation - - dist - - execution - - debugging - - javadoc - - junit compilation - - junit execution - - junit debugging - - cleanup - - --> -<project xmlns:webproject1="http://www.netbeans.org/ns/web-project/1" xmlns:webproject2="http://www.netbeans.org/ns/web-project/2" xmlns:webproject3="http://www.netbeans.org/ns/web-project/3" basedir=".." default="default" name="Kieker.WebGUI-impl"> - <import file="ant-deploy.xml"/> - <fail message="Please build using Ant 1.7.1 or higher."> - <condition> - <not> - <antversion atleast="1.7.1"/> - </not> - </condition> - </fail> - <target depends="dist,javadoc" description="Build whole project." name="default"/> - <!-- - INITIALIZATION SECTION - --> - <target name="-pre-init"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="-pre-init" name="-init-private"> - <property file="nbproject/private/private.properties"/> - </target> - <target depends="-pre-init,-init-private" name="-init-user"> - <property file="${user.properties.file}"/> - <!-- The two properties below are usually overridden --> - <!-- by the active platform. Just a fallback. --> - <property name="default.javac.source" value="1.4"/> - <property name="default.javac.target" value="1.4"/> - </target> - <target depends="-pre-init,-init-private,-init-user" name="-init-project"> - <property file="nbproject/project.properties"/> - </target> - <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" if="dist.ear.dir" name="-do-ear-init"/> - <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init"> - <condition property="have.tests"> - <or> - <available file="${test.src.dir}"/> - </or> - </condition> - <condition property="have.sources"> - <or> - <available file="${src.dir}"/> - </or> - </condition> - <condition property="netbeans.home+have.tests"> - <and> - <isset property="netbeans.home"/> - <isset property="have.tests"/> - </and> - </condition> - <condition property="no.javadoc.preview"> - <isfalse value="${javadoc.preview}"/> - </condition> - <property name="javac.compilerargs" value=""/> - <condition property="no.deps"> - <and> - <istrue value="${no.dependencies}"/> - </and> - </condition> - <condition property="no.dist.ear.dir"> - <not> - <isset property="dist.ear.dir"/> - </not> - </condition> - <property name="build.web.excludes" value="${build.classes.excludes}"/> - <condition property="do.compile.jsps"> - <istrue value="${compile.jsps}"/> - </condition> - <condition property="do.debug.server"> - <or> - <not> - <isset property="debug.server"/> - </not> - <istrue value="${debug.server}"/> - <and> - <not> - <istrue value="${debug.server}"/> - </not> - <not> - <istrue value="${debug.client}"/> - </not> - </and> - </or> - </condition> - <condition property="do.debug.client"> - <istrue value="${debug.client}"/> - </condition> - <condition property="do.display.browser"> - <istrue value="${display.browser}"/> - </condition> - <condition property="do.display.browser.debug"> - <and> - <isset property="do.display.browser"/> - <not> - <isset property="do.debug.client"/> - </not> - </and> - </condition> - <available file="${conf.dir}/MANIFEST.MF" property="has.custom.manifest"/> - <available file="${persistence.xml.dir}/persistence.xml" property="has.persistence.xml"/> - <condition property="do.war.package.with.custom.manifest"> - <isset property="has.custom.manifest"/> - </condition> - <condition property="do.war.package.without.custom.manifest"> - <not> - <isset property="has.custom.manifest"/> - </not> - </condition> - <condition property="do.tmp.war.package.with.custom.manifest"> - <and> - <isset property="has.custom.manifest"/> - <or> - <isfalse value="${directory.deployment.supported}"/> - <isset property="dist.ear.dir"/> - </or> - </and> - </condition> - <condition property="do.tmp.war.package.without.custom.manifest"> - <and> - <not> - <isset property="has.custom.manifest"/> - </not> - <or> - <isfalse value="${directory.deployment.supported}"/> - <isset property="dist.ear.dir"/> - </or> - </and> - </condition> - <condition property="do.tmp.war.package"> - <or> - <isfalse value="${directory.deployment.supported}"/> - <isset property="dist.ear.dir"/> - </or> - </condition> - <property name="build.meta.inf.dir" value="${build.web.dir}/META-INF"/> - <condition else="" property="application.args.param" value="${application.args}"> - <and> - <isset property="application.args"/> - <not> - <equals arg1="${application.args}" arg2="" trim="true"/> - </not> - </and> - </condition> - <property name="source.encoding" value="${file.encoding}"/> - <condition property="javadoc.encoding.used" value="${javadoc.encoding}"> - <and> - <isset property="javadoc.encoding"/> - <not> - <equals arg1="${javadoc.encoding}" arg2=""/> - </not> - </and> - </condition> - <property name="javadoc.encoding.used" value="${source.encoding}"/> - <property name="includes" value="**"/> - <property name="excludes" value=""/> - <property name="runmain.jvmargs" value=""/> - <path id="endorsed.classpath.path" path="${endorsed.classpath}"/> - <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'"> - <and> - <isset property="endorsed.classpath"/> - <length length="0" string="${endorsed.classpath}" when="greater"/> - </and> - </condition> - <condition else="false" property="jdkBug6558476"> - <and> - <matches pattern="1\.[56]" string="${java.specification.version}"/> - <not> - <os family="unix"/> - </not> - </and> - </condition> - <property name="javac.fork" value="${jdkBug6558476}"/> - </target> - <target depends="init" name="-init-cos" unless="deploy.on.save"> - <condition property="deploy.on.save" value="true"> - <or> - <istrue value="${j2ee.deploy.on.save}"/> - <istrue value="${j2ee.compile.on.save}"/> - </or> - </condition> - </target> - <target name="-post-init"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check"> - <fail unless="src.dir">Must set src.dir</fail> - <fail unless="test.src.dir">Must set test.src.dir</fail> - <fail unless="build.dir">Must set build.dir</fail> - <fail unless="build.web.dir">Must set build.web.dir</fail> - <fail unless="build.generated.dir">Must set build.generated.dir</fail> - <fail unless="dist.dir">Must set dist.dir</fail> - <fail unless="build.classes.dir">Must set build.classes.dir</fail> - <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail> - <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail> - <fail unless="build.test.results.dir">Must set build.test.results.dir</fail> - <fail unless="build.classes.excludes">Must set build.classes.excludes</fail> - <fail unless="dist.war">Must set dist.war</fail> - <condition property="missing.j2ee.server.home"> - <and> - <matches pattern="j2ee.server.home" string="${j2ee.platform.classpath}"/> - <not> - <isset property="j2ee.server.home"/> - </not> - </and> - </condition> - <fail if="missing.j2ee.server.home"> -The Java EE server classpath is not correctly set up - server home directory is missing. -Either open the project in the IDE and assign the server or setup the server classpath manually. -For example like this: - ant -Dj2ee.server.home=<app_server_installation_directory> - </fail> - <fail unless="j2ee.platform.classpath"> -The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. -Either open the project in the IDE and assign the server or setup the server classpath manually. -For example like this: - ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) -or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) - </fail> - </target> - <target name="-init-macrodef-property"> - <macrodef name="property" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute name="name"/> - <attribute name="value"/> - <sequential> - <property name="@{name}" value="${@{value}}"/> - </sequential> - </macrodef> - </target> - <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors"> - <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2"> - <attribute default="${src.dir}" name="srcdir"/> - <attribute default="${build.classes.dir}" name="destdir"/> - <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/> - <attribute default="${javac.processorpath}" name="processorpath"/> - <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/> - <attribute default="${includes}" name="includes"/> - <attribute default="${excludes}" name="excludes"/> - <attribute default="${javac.debug}" name="debug"/> - <attribute default="${empty.dir}" name="gensrcdir"/> - <element name="customize" optional="true"/> - <sequential> - <property location="${build.dir}/empty" name="empty.dir"/> - <mkdir dir="${empty.dir}"/> - <mkdir dir="@{apgeneratedsrcdir}"/> - <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}"> - <src> - <dirset dir="@{gensrcdir}" erroronmissingdir="false"> - <include name="*"/> - </dirset> - </src> - <classpath> - <path path="@{classpath}"/> - </classpath> - <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> - <compilerarg line="${javac.compilerargs}"/> - <compilerarg value="-processorpath"/> - <compilerarg path="@{processorpath}:${empty.dir}"/> - <compilerarg line="${ap.processors.internal}"/> - <compilerarg value="-s"/> - <compilerarg path="@{apgeneratedsrcdir}"/> - <compilerarg line="${ap.proc.none.internal}"/> - <customize/> - </javac> - </sequential> - </macrodef> - </target> - <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal"> - <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2"> - <attribute default="${src.dir}" name="srcdir"/> - <attribute default="${build.classes.dir}" name="destdir"/> - <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/> - <attribute default="${javac.processorpath}" name="processorpath"/> - <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/> - <attribute default="${includes}" name="includes"/> - <attribute default="${excludes}" name="excludes"/> - <attribute default="${javac.debug}" name="debug"/> - <attribute default="${empty.dir}" name="gensrcdir"/> - <element name="customize" optional="true"/> - <sequential> - <property location="${build.dir}/empty" name="empty.dir"/> - <mkdir dir="${empty.dir}"/> - <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}"> - <src> - <dirset dir="@{gensrcdir}" erroronmissingdir="false"> - <include name="*"/> - </dirset> - </src> - <classpath> - <path path="@{classpath}"/> - </classpath> - <compilerarg line="${endorsed.classpath.cmd.line.arg}"/> - <compilerarg line="${javac.compilerargs}"/> - <customize/> - </javac> - </sequential> - </macrodef> - </target> - <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac"> - <macrodef name="depend" uri="http://www.netbeans.org/ns/web-project/2"> - <attribute default="${src.dir}" name="srcdir"/> - <attribute default="${build.classes.dir}" name="destdir"/> - <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/> - <sequential> - <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}"> - <classpath> - <path path="@{classpath}"/> - </classpath> - </depend> - </sequential> - </macrodef> - <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/web-project/2"> - <attribute default="${build.classes.dir}" name="destdir"/> - <sequential> - <fail unless="javac.includes">Must set javac.includes</fail> - <pathconvert pathsep="${line.separator}" property="javac.includes.binary"> - <path> - <filelist dir="@{destdir}" files="${javac.includes}"/> - </path> - <globmapper from="*.java" to="*.class"/> - </pathconvert> - <tempfile deleteonexit="true" property="javac.includesfile.binary"/> - <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/> - <delete> - <files includesfile="${javac.includesfile.binary}"/> - </delete> - <delete file="${javac.includesfile.binary}"/> - </sequential> - </macrodef> - </target> - <target name="-init-macrodef-junit"> - <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2"> - <attribute default="${includes}" name="includes"/> - <attribute default="${excludes}" name="excludes"/> - <attribute default="**" name="testincludes"/> - <sequential> - <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}"> - <batchtest todir="${build.test.results.dir}"> - <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}"> - <filename name="@{testincludes}"/> - </fileset> - </batchtest> - <classpath> - <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/> - </classpath> - <syspropertyset> - <propertyref prefix="test-sys-prop."/> - <mapper from="test-sys-prop.*" to="*" type="glob"/> - </syspropertyset> - <formatter type="brief" usefile="false"/> - <formatter type="xml"/> - <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> - <jvmarg value="-ea"/> - <jvmarg line="${runmain.jvmargs}"/> - </junit> - </sequential> - </macrodef> - </target> - <target name="-init-macrodef-java"> - <macrodef name="java" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute default="${main.class}" name="classname"/> - <attribute default="${debug.classpath}" name="classpath"/> - <element name="customize" optional="true"/> - <sequential> - <java classname="@{classname}" fork="true"> - <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> - <jvmarg line="${runmain.jvmargs}"/> - <classpath> - <path path="@{classpath}:${j2ee.platform.classpath}"/> - </classpath> - <syspropertyset> - <propertyref prefix="run-sys-prop."/> - <mapper from="run-sys-prop.*" to="*" type="glob"/> - </syspropertyset> - <customize/> - </java> - </sequential> - </macrodef> - </target> - <target name="-init-macrodef-nbjsdebug"> - <macrodef name="nbjsdebugstart" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute default="${client.url}" name="webUrl"/> - <sequential> - <nbjsdebugstart urlPart="${client.urlPart}" webUrl="@{webUrl}"/> - </sequential> - </macrodef> - </target> - <target depends="-init-debug-args" name="-init-macrodef-nbjpda"> - <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute default="${main.class}" name="name"/> - <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/> - <sequential> - <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}"> - <classpath> - <path path="@{classpath}"/> - </classpath> - </nbjpdastart> - </sequential> - </macrodef> - <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute default="${build.classes.dir}" name="dir"/> - <sequential> - <nbjpdareload> - <fileset dir="@{dir}" includes="${fix.classes}"> - <include name="${fix.includes}*.class"/> - </fileset> - </nbjpdareload> - </sequential> - </macrodef> - <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1"> - <sequential> - <nbjpdaappreloaded/> - </sequential> - </macrodef> - </target> - <target name="-init-debug-args"> - <property name="version-output" value="java version "${ant.java.version}"/> - <condition property="have-jdk-older-than-1.4"> - <or> - <contains string="${version-output}" substring="java version "1.0"/> - <contains string="${version-output}" substring="java version "1.1"/> - <contains string="${version-output}" substring="java version "1.2"/> - <contains string="${version-output}" substring="java version "1.3"/> - </or> - </condition> - <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none"> - <istrue value="${have-jdk-older-than-1.4}"/> - </condition> - <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem"> - <os family="windows"/> - </condition> - <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}"> - <isset property="debug.transport"/> - </condition> - </target> - <target depends="-init-debug-args" name="-init-macrodef-debug"> - <macrodef name="debug" uri="http://www.netbeans.org/ns/web-project/1"> - <attribute default="${main.class}" name="classname"/> - <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/> - <attribute default="${application.args.param}" name="args"/> - <element name="customize" optional="true"/> - <sequential> - <java classname="@{classname}" fork="true"> - <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> - <jvmarg line="${debug-args-line}"/> - <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/> - <jvmarg line="${runmain.jvmargs}"/> - <classpath> - <path path="@{classpath}"/> - </classpath> - <syspropertyset> - <propertyref prefix="run-sys-prop."/> - <mapper from="run-sys-prop.*" to="*" type="glob"/> - </syspropertyset> - <arg line="@{args}"/> - <customize/> - </java> - </sequential> - </macrodef> - </target> - <target name="-init-taskdefs"> - <fail unless="libs.CopyLibs.classpath"> -The libs.CopyLibs.classpath property is not set up. -This property must point to -org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part -of NetBeans IDE installation and is usually located at -<netbeans_installation>/java<version>/ant/extra folder. -Either open the project in the IDE and make sure CopyLibs library -exists or setup the property manually. For example like this: - ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar - </fail> - <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/> - </target> - <target name="-init-ap-cmdline-properties"> - <property name="annotation.processing.enabled" value="true"/> - <property name="annotation.processing.processors.list" value=""/> - <property name="annotation.processing.run.all.processors" value="true"/> - <property name="javac.processorpath" value="${javac.classpath}"/> - <property name="javac.test.processorpath" value="${javac.test.classpath}"/> - <condition property="ap.supported.internal" value="true"> - <not> - <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/> - </not> - </condition> - </target> - <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported"> - <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}"> - <isfalse value="${annotation.processing.run.all.processors}"/> - </condition> - <condition else="" property="ap.proc.none.internal" value="-proc:none"> - <isfalse value="${annotation.processing.enabled}"/> - </condition> - </target> - <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline"> - <property name="ap.cmd.line.internal" value=""/> - </target> - <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-check" name="profile-init"/> - <target name="-profile-pre-init"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target name="-profile-post-init"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="-profile-pre-init, init, -profile-post-init" name="-profile-init-check"> - <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail> - <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail> - </target> - <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-java,-init-macrodef-nbjpda,-init-macrodef-nbjsdebug,-init-macrodef-debug,-init-taskdefs,-init-ap-cmdline" name="init"/> - <!-- - COMPILATION SECTION - --> - <target depends="init" if="no.dist.ear.dir" name="deps-module-jar" unless="no.deps"/> - <target depends="init" if="dist.ear.dir" name="deps-ear-jar" unless="no.deps"/> - <target depends="init, deps-module-jar, deps-ear-jar" name="deps-jar" unless="no.deps"/> - <target depends="init,deps-jar" name="-pre-pre-compile"> - <mkdir dir="${build.classes.dir}"/> - </target> - <target name="-pre-compile"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target name="-copy-webdir"> - <copy todir="${build.web.dir}"> - <fileset dir="${web.docbase.dir}" excludes="${build.web.excludes},${excludes}" includes="${includes}"/> - </copy> - <copy todir="${build.web.dir}/WEB-INF"> - <fileset dir="${webinf.dir}" excludes="${build.web.excludes}"/> - </copy> - </target> - <target depends="init, deps-jar, -pre-pre-compile, -pre-compile, -copy-manifest, -copy-persistence-xml, -copy-webdir, library-inclusion-in-archive,library-inclusion-in-manifest" if="have.sources" name="-do-compile"> - <webproject2:javac destdir="${build.classes.dir}" gensrcdir="${build.generated.sources.dir}"/> - <copy todir="${build.classes.dir}"> - <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> - </copy> - </target> - <target if="has.custom.manifest" name="-copy-manifest"> - <mkdir dir="${build.meta.inf.dir}"/> - <copy todir="${build.meta.inf.dir}"> - <fileset dir="${conf.dir}" includes="MANIFEST.MF"/> - </copy> - </target> - <target if="has.persistence.xml" name="-copy-persistence-xml"> - <mkdir dir="${build.web.dir}/WEB-INF/classes/META-INF"/> - <copy todir="${build.web.dir}/WEB-INF/classes/META-INF"> - <fileset dir="${persistence.xml.dir}" includes="persistence.xml"/> - </copy> - </target> - <target name="-post-compile"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/> - <target name="-pre-compile-single"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single"> - <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> - <webproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/> - <copy todir="${build.classes.dir}"> - <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> - </copy> - </target> - <target name="-post-compile-single"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/> - <property name="jspc.schemas" value="/resources/schemas/"/> - <property name="jspc.dtds" value="/resources/dtds/"/> - <target depends="compile" description="Test compile JSP pages to expose compilation errors." if="do.compile.jsps" name="compile-jsps"> - <mkdir dir="${build.generated.dir}/src"/> - <java classname="org.netbeans.modules.web.project.ant.JspC" failonerror="true" fork="true"> - <arg value="-uriroot"/> - <arg file="${basedir}/${build.web.dir}"/> - <arg value="-d"/> - <arg file="${basedir}/${build.generated.dir}/src"/> - <arg value="-die1"/> - <arg value="-schemas ${jspc.schemas}"/> - <arg value="-dtds ${jspc.dtds}"/> - <arg value="-compilerSourceVM ${javac.source}"/> - <arg value="-compilerTargetVM ${javac.target}"/> - <arg value="-javaEncoding ${source.encoding}"/> - <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/> - <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/> - </java> - <mkdir dir="${build.generated.dir}/classes"/> - <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"/> - </target> - <target depends="compile" if="jsp.includes" name="-do-compile-single-jsp"> - <fail unless="javac.jsp.includes">Must select some files in the IDE or set javac.jsp.includes</fail> - <mkdir dir="${build.generated.dir}/src"/> - <java classname="org.netbeans.modules.web.project.ant.JspCSingle" failonerror="true" fork="true"> - <arg value="-uriroot"/> - <arg file="${basedir}/${build.web.dir}"/> - <arg value="-d"/> - <arg file="${basedir}/${build.generated.dir}/src"/> - <arg value="-die1"/> - <arg value="-schemas ${jspc.schemas}"/> - <arg value="-dtds ${jspc.dtds}"/> - <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/> - <arg value="-jspc.files"/> - <arg path="${jsp.includes}"/> - <arg value="-compilerSourceVM ${javac.source}"/> - <arg value="-compilerTargetVM ${javac.target}"/> - <arg value="-javaEncoding ${source.encoding}"/> - <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/> - </java> - <mkdir dir="${build.generated.dir}/classes"/> - <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"> - <customize> - <patternset includes="${javac.jsp.includes}"/> - </customize> - </webproject2:javac> - </target> - <target name="compile-single-jsp"> - <fail unless="jsp.includes">Must select a file in the IDE or set jsp.includes</fail> - <antcall target="-do-compile-single-jsp"/> - </target> - <!-- - DIST BUILDING SECTION - --> - <target name="-pre-dist"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.without.custom.manifest" name="-do-dist-without-manifest"> - <dirname file="${dist.war}" property="dist.jar.dir"/> - <mkdir dir="${dist.jar.dir}"/> - <jar compress="${jar.compress}" jarfile="${dist.war}"> - <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/> - </jar> - </target> - <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.with.custom.manifest" name="-do-dist-with-manifest"> - <dirname file="${dist.war}" property="dist.jar.dir"/> - <mkdir dir="${dist.jar.dir}"/> - <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF"> - <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/> - </jar> - </target> - <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.without.custom.manifest" name="-do-tmp-dist-without-manifest"> - <dirname file="${dist.war}" property="dist.jar.dir"/> - <mkdir dir="${dist.jar.dir}"/> - <jar compress="${jar.compress}" jarfile="${dist.war}"> - <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/> - </jar> - </target> - <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.with.custom.manifest" name="-do-tmp-dist-with-manifest"> - <dirname file="${dist.war}" property="dist.jar.dir"/> - <mkdir dir="${dist.jar.dir}"/> - <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF"> - <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/> - </jar> - </target> - <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/> - <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest"> - <copyfiles files="${libs.jsf20.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/> - <copyfiles files="${libs.jstl11.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/> - <copyfiles files="${libs.primefaces.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/> - <copyfiles files="${file.reference.ui-darkness-1.0.2.jar}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/> - <mkdir dir="${build.web.dir}/META-INF"/> - <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/> - </target> - <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir"> - <copyfiles files="${libs.jsf20.classpath}" todir="${build.web.dir}/WEB-INF/lib"/> - <copyfiles files="${libs.jstl11.classpath}" todir="${build.web.dir}/WEB-INF/lib"/> - <copyfiles files="${libs.primefaces.classpath}" todir="${build.web.dir}/WEB-INF/lib"/> - <copyfiles files="${file.reference.ui-darkness-1.0.2.jar}" todir="${build.web.dir}/WEB-INF/lib"/> - </target> - <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib"> - <delete dir="${build.web.dir}/WEB-INF/lib"/> - </target> - <target depends="init,-clean-webinf-lib,compile,compile-jsps,-pre-dist,library-inclusion-in-manifest" if="do.tmp.war.package" name="do-ear-dist"> - <dirname file="${dist.ear.war}" property="dist.jar.dir"/> - <mkdir dir="${dist.jar.dir}"/> - <jar compress="${jar.compress}" jarfile="${dist.ear.war}" manifest="${build.web.dir}/META-INF/MANIFEST.MF"> - <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*"/> - </jar> - </target> - <target name="-post-dist"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,-pre-dist,do-dist,-post-dist" description="Build distribution (WAR)." name="dist"/> - <target depends="init,-clean-webinf-lib,-init-cos,compile,-pre-dist,do-ear-dist,-post-dist" description="Build distribution (WAR) to be packaged into an EAR." name="dist-ear"/> - <!-- - EXECUTION SECTION - --> - <target depends="run-deploy,run-display-browser" description="Deploy to server and show in browser." name="run"/> - <target name="-pre-run-deploy"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target name="-post-run-deploy"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target name="-pre-nbmodule-run-deploy"> - <!-- Empty placeholder for easier customization. --> - <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. --> - </target> - <target name="-post-nbmodule-run-deploy"> - <!-- Empty placeholder for easier customization. --> - <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. --> - </target> - <target name="-run-deploy-am"> - <!-- Task to deploy to the Access Manager runtime. --> - </target> - <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest,-pre-run-deploy,-pre-nbmodule-run-deploy,-run-deploy-nb,-init-deploy-ant,-deploy-ant,-run-deploy-am,-post-nbmodule-run-deploy,-post-run-deploy,-do-update-breakpoints" name="run-deploy"/> - <target if="netbeans.home" name="-run-deploy-nb"> - <nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/> - </target> - <target name="-init-deploy-ant" unless="netbeans.home"> - <property name="deploy.ant.archive" value="${dist.war}"/> - <property name="deploy.ant.docbase.dir" value="${web.docbase.dir}"/> - <property name="deploy.ant.resource.dir" value="${resource.dir}"/> - <property name="deploy.ant.enabled" value="true"/> - </target> - <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/> - <target if="netbeans.home" name="-run-undeploy-nb"> - <fail message="Undeploy is not supported from within the IDE"/> - </target> - <target depends="init,-pre-dist,dist,-post-dist" name="verify"> - <nbverify file="${dist.war}"/> - </target> - <target depends="run-deploy,-init-display-browser,-display-browser-nb,-display-browser-cl" name="run-display-browser"/> - <target if="do.display.browser" name="-init-display-browser"> - <condition property="do.display.browser.nb"> - <isset property="netbeans.home"/> - </condition> - <condition property="do.display.browser.cl"> - <isset property="deploy.ant.enabled"/> - </condition> - </target> - <target if="do.display.browser.nb" name="-display-browser-nb"> - <nbbrowse url="${client.url}"/> - </target> - <target if="do.display.browser.cl" name="-get-browser" unless="browser"> - <condition property="browser" value="rundll32"> - <os family="windows"/> - </condition> - <condition else="" property="browser.args" value="url.dll,FileProtocolHandler"> - <os family="windows"/> - </condition> - <condition property="browser" value="/usr/bin/open"> - <os family="mac"/> - </condition> - <property environment="env"/> - <condition property="browser" value="${env.BROWSER}"> - <isset property="env.BROWSER"/> - </condition> - <condition property="browser" value="/usr/bin/firefox"> - <available file="/usr/bin/firefox"/> - </condition> - <condition property="browser" value="/usr/local/firefox/firefox"> - <available file="/usr/local/firefox/firefox"/> - </condition> - <condition property="browser" value="/usr/bin/mozilla"> - <available file="/usr/bin/mozilla"/> - </condition> - <condition property="browser" value="/usr/local/mozilla/mozilla"> - <available file="/usr/local/mozilla/mozilla"/> - </condition> - <condition property="browser" value="/usr/sfw/lib/firefox/firefox"> - <available file="/usr/sfw/lib/firefox/firefox"/> - </condition> - <condition property="browser" value="/opt/csw/bin/firefox"> - <available file="/opt/csw/bin/firefox"/> - </condition> - <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla"> - <available file="/usr/sfw/lib/mozilla/mozilla"/> - </condition> - <condition property="browser" value="/opt/csw/bin/mozilla"> - <available file="/opt/csw/bin/mozilla"/> - </condition> - </target> - <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl"> - <fail unless="browser"> - Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. - </fail> - <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/> - <echo>Launching ${browse.url}</echo> - <exec executable="${browser}" spawn="true"> - <arg line="${browser.args} ${browse.url}"/> - </exec> - </target> - <target depends="init,-init-cos,compile-single" name="run-main"> - <fail unless="run.class">Must select one file in the IDE or set run.class</fail> - <webproject1:java classname="${run.class}"/> - </target> - <target depends="init,compile-test-single,-pre-test-run-single" name="run-test-with-main"> - <fail unless="run.class">Must select one file in the IDE or set run.class</fail> - <webproject1:java classname="${run.class}" classpath="${run.test.classpath}"/> - </target> - <target depends="init" if="netbeans.home" name="-do-update-breakpoints"> - <webproject1:nbjpdaappreloaded/> - </target> - <!-- - DEBUGGING SECTION - --> - <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest" description="Debug project in IDE." if="netbeans.home" name="debug"> - <nbstartserver debugmode="true"/> - <antcall target="connect-debugger"/> - <nbdeploy clientUrlPart="${client.urlPart}" debugmode="true" forceRedeploy="true"/> - <antcall target="debug-display-browser"/> - <antcall target="connect-client-debugger"/> - </target> - <target if="do.debug.server" name="connect-debugger" unless="is.debugged"> - <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}"> - <classpath> - <path path="${debug.classpath}:${j2ee.platform.classpath}"/> - </classpath> - <sourcepath> - <path path="${web.docbase.dir}"/> - </sourcepath> - </nbjpdaconnect> - </target> - <target if="do.display.browser.debug" name="debug-display-browser"> - <nbbrowse url="${client.url}"/> - </target> - <target if="do.debug.client" name="connect-client-debugger"> - <webproject1:nbjsdebugstart webUrl="${client.url}"/> - </target> - <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test"> - <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail> - <webproject1:debug classname="${debug.class}" classpath="${debug.test.classpath}"/> - </target> - <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/> - <target depends="init,compile,compile-jsps,-do-compile-single-jsp,debug" if="netbeans.home" name="debug-single"/> - <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test"> - <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/> - </target> - <target depends="init" if="netbeans.home" name="-debug-start-debugger"> - <webproject1:nbjpdastart name="${debug.class}"/> - </target> - <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single"> - <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail> - <webproject1:debug classname="${debug.class}"/> - </target> - <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/> - <target depends="init" name="-pre-debug-fix"> - <fail unless="fix.includes">Must set fix.includes</fail> - <property name="javac.includes" value="${fix.includes}.java"/> - </target> - <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix"> - <webproject1:nbjpdareload/> - </target> - <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/> - <!-- - ================= - PROFILING SECTION - ================= - --> - <target description="Profile a J2EE project in the IDE." name="profile"> - <condition else="start-profiled-server" property="profiler.startserver.target" value="start-profiled-server-extraargs"> - <isset property="profiler.info.jvmargs.extra"/> - </condition> - <antcall target="${profiler.startserver.target}"/> - <antcall target="run"/> - <antcall target="start-loadgen"/> - </target> - <target name="start-profiled-server"> - <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}"> - <jvmarg value="${profiler.info.jvmargs.agent}"/> - <jvmarg value="${profiler.j2ee.agentID}"/> - </nbstartprofiledserver> - </target> - <target name="start-profiled-server-extraargs"> - <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}"> - <jvmarg value="${profiler.info.jvmargs.extra}"/> - <jvmarg value="${profiler.info.jvmargs.agent}"/> - <jvmarg value="${profiler.j2ee.agentID}"/> - </nbstartprofiledserver> - </target> - <target if="profiler.loadgen.path" name="start-loadgen"> - <loadgenstart path="${profiler.loadgen.path}"/> - </target> - <!-- - JAVADOC SECTION - --> - <target depends="init" if="have.sources" name="javadoc-build"> - <mkdir dir="${dist.javadoc.dir}"/> - <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> - <classpath> - <path path="${javac.classpath}:${j2ee.platform.classpath}"/> - </classpath> - <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}"> - <filename name="**/*.java"/> - </fileset> - <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false"> - <include name="**/*.java"/> - </fileset> - </javadoc> - <copy todir="${dist.javadoc.dir}"> - <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}"> - <filename name="**/doc-files/**"/> - </fileset> - <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false"> - <include name="**/doc-files/**"/> - </fileset> - </copy> - </target> - <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview"> - <nbbrowse file="${dist.javadoc.dir}/index.html"/> - </target> - <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/> - <!-- - - JUNIT COMPILATION SECTION - --> - <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test"> - <mkdir dir="${build.test.classes.dir}"/> - <property name="j2ee.platform.embeddableejb.classpath" value=""/> - </target> - <target name="-pre-compile-test"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test"> - <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/> - <copy todir="${build.test.classes.dir}"> - <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> - </copy> - </target> - <target name="-post-compile-test"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/> - <target name="-pre-compile-test-single"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single"> - <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> - <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" srcdir="${test.src.dir}"/> - <copy todir="${build.test.classes.dir}"> - <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> - </copy> - </target> - <target name="-post-compile-test-single"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/> - <!-- - - JUNIT EXECUTION SECTION - --> - <target depends="init" if="have.tests" name="-pre-test-run"> - <mkdir dir="${build.test.results.dir}"/> - </target> - <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run"> - <webproject2:junit testincludes="**/*Test.java"/> - </target> - <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run"> - <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail> - </target> - <target depends="init" if="have.tests" name="test-report"/> - <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/> - <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/> - <target depends="init" if="have.tests" name="-pre-test-run-single"> - <mkdir dir="${build.test.results.dir}"/> - </target> - <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single"> - <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail> - <webproject2:junit excludes="" includes="${test.includes}"/> - </target> - <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single"> - <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail> - </target> - <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/> - <!-- - - JUNIT DEBUGGING SECTION - --> - <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test"> - <fail unless="test.class">Must select one file in the IDE or set test.class</fail> - <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/> - <delete file="${test.report.file}"/> - <!-- must exist, otherwise the XML formatter would fail --> - <mkdir dir="${build.test.results.dir}"/> - <webproject1:debug args="${test.class}" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}:${j2ee.platform.embeddableejb.classpath}"> - <customize> - <arg value="showoutput=true"/> - <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/> - <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/> - </customize> - </webproject1:debug> - </target> - <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test"> - <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/> - </target> - <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/> - <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test"> - <webproject1:nbjpdareload dir="${build.test.classes.dir}"/> - </target> - <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/> - <!-- - ========================= - TESTS PROFILING SECTION - ========================= - --> - <target depends="profile-init,compile-test-single" if="netbeans.home" name="profile-test-single"> - <nbprofiledirect> - <classpath> - <path path="${run.test.classpath}"/> - <path path="${j2ee.platform.classpath}"/> - </classpath> - </nbprofiledirect> - <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true"> - <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/> - <jvmarg value="${profiler.info.jvmargs.agent}"/> - <jvmarg line="${profiler.info.jvmargs}"/> - <test name="${profile.class}"/> - <classpath> - <path path="${run.test.classpath}"/> - <path path="${j2ee.platform.classpath}"/> - </classpath> - <syspropertyset> - <propertyref prefix="test-sys-prop."/> - <mapper from="test-sys-prop.*" to="*" type="glob"/> - </syspropertyset> - <formatter type="brief" usefile="false"/> - <formatter type="xml"/> - </junit> - </target> - <!-- - - CLEANUP SECTION - --> - <target depends="init" name="deps-clean" unless="no.deps"/> - <target depends="init" name="do-clean"> - <condition property="build.dir.to.clean" value="${build.web.dir}"> - <isset property="dist.ear.dir"/> - </condition> - <property name="build.dir.to.clean" value="${build.web.dir}"/> - <delete includeEmptyDirs="true" quiet="true"> - <fileset dir="${build.dir.to.clean}/WEB-INF/lib"/> - </delete> - <delete dir="${build.dir}"/> - <available file="${build.dir.to.clean}/WEB-INF/lib" property="status.clean-failed" type="dir"/> - <delete dir="${dist.dir}"/> - </target> - <target depends="do-clean" if="status.clean-failed" name="check-clean"> - <echo message="Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. "/> - <echo level="info" message="To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again."/> - </target> - <target depends="init" if="netbeans.home" name="undeploy-clean"> - <nbundeploy failOnError="false" startServer="false"/> - </target> - <target name="-post-clean"> - <!-- Empty placeholder for easier customization. --> - <!-- You can override this target in the ../build.xml file. --> - </target> - <target depends="init,undeploy-clean,deps-clean,do-clean,check-clean,-post-clean" description="Clean build products." name="clean"/> - <target depends="clean" description="Clean build products." name="clean-ear"/> -</project> diff --git a/nbproject/genfiles.properties b/nbproject/genfiles.properties deleted file mode 100644 index f8869a55..00000000 --- a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8812c641 -build.xml.script.CRC32=4b29385e -build.xml.stylesheet.CRC32=651128d4@1.36.1.1 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8812c641 -nbproject/build-impl.xml.script.CRC32=1c0d8dde -nbproject/build-impl.xml.stylesheet.CRC32=b7883b1f@1.36.1.1 diff --git a/nbproject/project.properties b/nbproject/project.properties deleted file mode 100644 index 6f230f7f..00000000 --- a/nbproject/project.properties +++ /dev/null @@ -1,87 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=true -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -auxiliary.org-netbeans-modules-projectapi.jsf_2e_language=Facelets -build.classes.dir=${build.web.dir}/WEB-INF/classes -build.classes.excludes=**/*.java,**/*.form -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -build.web.dir=${build.dir}/web -build.web.excludes=${build.classes.excludes} -client.urlPart= -compile.jsps=false -conf.dir=${source.root}/conf -debug.classpath=${build.classes.dir}:${javac.classpath} -debug.test.classpath=\ - ${run.test.classpath} -display.browser=true -dist.dir=dist -dist.ear.war=${dist.dir}/${war.ear.name} -dist.javadoc.dir=${dist.dir}/javadoc -dist.war=${dist.dir}/${war.name} -endorsed.classpath=\ - ${libs.javaee-endorsed-api-6.0.classpath} -excludes= -file.reference.ui-darkness-1.0.2.jar=lib\\ui-darkness-1.0.2.jar -includes=** -j2ee.compile.on.save=true -j2ee.deploy.on.save=true -j2ee.platform=1.6-web -j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-3.6.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/jstl-api-1.2.jar:${j2ee.server.home}/lib/jstl-impl-1.2.jar:${j2ee.server.home}/lib/primefaces-2.2.1.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-util.jar -j2ee.server.type=Tomcat -jar.compress=false -javac.classpath=\ - ${libs.jsf20.classpath}:\ - ${libs.jstl11.classpath}:\ - ${libs.primefaces.classpath}:\ - ${file.reference.ui-darkness-1.0.2.jar} -# Space-separated list of extra javac options -javac.compilerargs= -javac.debug=true -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.6 -javac.target=1.6 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.preview=true -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -lib.dir=${web.docbase.dir}/WEB-INF/lib -no.dependencies=false -persistence.xml.dir=${conf.dir} -platform.active=default_platform -resource.dir=setup -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -# Space-separated list of JVM arguments used when running a class with a main method or a unit test -# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): -runmain.jvmargs= -source.encoding=UTF-8 -source.root=src -src.dir=${source.root}/java -test.src.dir=test -war.content.additional= -war.ear.name=${war.name} -war.name=Kieker.WebGUI.war -web.docbase.dir=web -webinf.dir=web/WEB-INF diff --git a/nbproject/project.xml b/nbproject/project.xml deleted file mode 100644 index f4b40df8..00000000 --- a/nbproject/project.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://www.netbeans.org/ns/project/1"> - <type>org.netbeans.modules.web.project</type> - <configuration> - <data xmlns="http://www.netbeans.org/ns/web-project/3"> - <name>Kieker.WebGUI</name> - <minimum-ant-version>1.6.5</minimum-ant-version> - <web-module-libraries> - <library dirs="200"> - <file>${libs.jsf20.classpath}</file> - <path-in-war>WEB-INF/lib</path-in-war> - </library> - <library dirs="200"> - <file>${libs.jstl11.classpath}</file> - <path-in-war>WEB-INF/lib</path-in-war> - </library> - <library dirs="200"> - <file>${libs.primefaces.classpath}</file> - <path-in-war>WEB-INF/lib</path-in-war> - </library> - <library dirs="200"> - <file>${file.reference.ui-darkness-1.0.2.jar}</file> - <path-in-war>WEB-INF/lib</path-in-war> - </library> - </web-module-libraries> - <web-module-additional-libraries/> - <source-roots> - <root id="src.dir" name="Source Packages"/> - </source-roots> - <test-roots> - <root id="test.src.dir" name="Test Packages"/> - </test-roots> - </data> - </configuration> -</project> diff --git a/src/conf/MANIFEST.MF b/src/conf/MANIFEST.MF deleted file mode 100644 index 59499bce..00000000 --- a/src/conf/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - -- GitLab