Sh3ll
OdayForums


Server : Apache
System : Linux server1.cgrithy.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64
User : nobody ( 99)
PHP Version : 8.1.23
Disable Function : NONE
Directory :  /usr/share/doc/apache-commons-daemon-1.0.13/samples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/doc/apache-commons-daemon-1.0.13/samples/build.xml
<!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to You under the Apache License, Version 2.0
 (the "License"); you may not use this file except in compliance with
 the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->

<project name="daemons samples" default="jars" basedir=".">

<!-- ========== Initialize Properties ===================================== -->
  <property file="build.properties"/>
  <property name="dist.home"   value="../../dist"/>
  <property name="build.home"  value="./build"/>
  <property name="source.home" value="."/>

  <target name="jars" depends="SimpleDaemon,SimpleApplication,ServiceDaemon,AloneService,ProcrunService"/>

  <target name="clean" description="Remove output files">
    <delete quiet="true">
      <fileset dir="${build.home}"/>
      <fileset dir="${dist.home}" includes="SimpleDaemon.jar service.jar aloneservice.jar ProcrunService.jar"/>
    </delete>
  </target>

  <target name="SimpleDaemon" depends="compile"
   description="Create SimpleDaemon.jar">
    <mkdir      dir="${dist.home}"/>
    <jar    jarfile="${dist.home}/SimpleDaemon.jar">
      <metainf dir="../..">
        <include name="NOTICE.txt"/>
        <include name="LICENSE.txt"/>
      </metainf>
      <fileset dir="${build.home}/classes">
        <include name="SimpleDaemon*.class" />
      </fileset>
    </jar>
  </target>

  <target name="SimpleApplication" depends="compile"
          description="Create SimpleApplication.jar">
      <mkdir      dir="${dist.home}"/>
      <jar    jarfile="${dist.home}/SimpleApplication.jar">
          <metainf dir="../..">
              <include name="NOTICE.txt"/>
              <include name="LICENSE.txt"/>
          </metainf>
          <fileset dir="${build.home}/classes">
              <include name="SimpleApplication*.class" />
          </fileset>
      </jar>
  </target>

  <target name="ServiceDaemon" depends="compile"
   description="Create ServiceDaemon.jar">
    <mkdir      dir="${dist.home}"/>
    <jar    jarfile="${dist.home}/service.jar">
      <metainf dir="../..">
        <include name="NOTICE.txt"/>
        <include name="LICENSE.txt"/>
      </metainf>
      <fileset dir="${build.home}/classes">
        <include name="ServiceDaemon*.class" />
      </fileset>
    </jar>
  </target>

  <target name="AloneService" depends="compile"
   description="Create aloneservice.jar">
    <mkdir      dir="${dist.home}"/>
    <jar    jarfile="${dist.home}/aloneservice.jar">
      <metainf dir="../..">
        <include name="NOTICE.txt"/>
        <include name="LICENSE.txt"/>
      </metainf>
      <fileset dir="${build.home}/classes">
        <include name="AloneService*.class" />
        <include name="ServiceDaemonReadThread*.class" />
      </fileset>
    </jar>
  </target>

  <target name="ProcrunService" depends="compile"
   description="Create ProcrunService.jar">
    <mkdir      dir="${dist.home}"/>
    <jar    jarfile="${dist.home}/ProcrunService.jar">
      <metainf dir="../..">
        <include name="NOTICE.txt"/>
        <include name="LICENSE.txt"/>
      </metainf>
      <manifest>
         <attribute name="Main-Class" value="ProcrunService"/>
      </manifest>
      <fileset dir="${build.home}/classes">
        <include name="ProcrunService.class" />
      </fileset>
    </jar>
  </target>

  <target name="compile" depends="prepare"
   description="Create class files">
       <javac  srcdir="${source.home}"
            source="1.3"
            target="1.3"
           destdir="${build.home}/classes"
             debug="${compile.debug}"
       deprecation="${compile.deprecation}"
          optimize="${compile.optimize}">
      <classpath refid="compile.classpath"/>
    </javac>
  </target>

  <target name="prepare">
    <mkdir dir="${build.home}"/>
    <mkdir dir="${build.home}/classes"/>
  </target>

  <!-- Construct compile classpath -->
  <path id="compile.classpath">
    <!-- output jar filename may vary between releases -->
    <fileset dir="../../dist" includes="commons-daemon-*.jar"/>
  </path>

</project>

ZeroDay Forums Mini