Changeset 23400 in osm for applications/editors


Ignore:
Timestamp:
2010-09-29T22:28:10+02:00 (14 years ago)
Author:
postfix
Message:

reviewed ant files back

Location:
applications/editors/josm/plugins/smed
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/build.xml

    r23260 r23400  
    4141     -->
    4242        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
    43         <property name="smed_ex"                                value="../dist/"/>
    4443        <property name="plugin.build.dir"       value="build/"/>
    45         <property name="plugin.src.dir"         value="src"/>
     44        <property name="plugin.src.dir"         value="src/"/>
     45        <property name="smed.dist.dir"        value="dist/"/>
    4646        <!-- this is the directory where the plugin jar is copied to -->
    47         <property name="plugin.dist.dir"        value="../../dist"/>
     47        <property name="plugin.dist.dir"        value="../../dist/"/>
     48        <property name="smed_core.dist.dir"     value="core/dist/"/>
    4849        <property name="ant.build.javac.target" value="1.5"/>
    4950        <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
     
    5657        <target name="init">
    5758                <mkdir dir="${plugin.build.dir}"/>
    58                 <mkdir dir="../smed_about/smed_dist"/>
    59                 <mkdir dir="../smed_ex/smed_dist"/>
     59                <mkdir dir="${smed_core.dist.dir}"/>
     60                <mkdir dir="${smed.dist.dir}"/>
    6061        </target>
    6162
     
    9394                </copy>
    9495               
    95                 <delete>
    96                         <fileset dir="${plugin.build.dir}">
    97                         <include name="*smed_ex.jar"/>
    98                                 <include name="*smed_about.jar"/>
    99                         </fileset>
    100                 </delete>
    101 
    102                
    10396                <copy todir="${plugin.build.dir}">
    104                                         <fileset dir="../smed_about/smed_dist"/>
     97                        <fileset dir="${smed.dist.dir}"/>
    10598                </copy>
    106 
    107                 <copy todir="${plugin.build.dir}">
    108                                         <fileset dir="../smed_ex/smed_dist"/>
    109                 </copy>
    110                
     99                                               
    111100                <copy todir="${plugin.build.dir}">
    112101                        <fileset dir=".">
     
    134123                        </manifest>
    135124                </jar>
     125               
     126                <!-- install interface -->
     127                <copy file="${plugin.jar}" todir="${smed_core.dist.dir}"/>
    136128        </target>
    137129       
     
    160152                <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    161153        </target>
    162 
    163        
    164154</project>
  • applications/editors/josm/plugins/smed/plugs/oseam/build.xml

    r23393 r23400  
    2828**
    2929-->
    30 <project name="OSeaM" default="dist" basedir=".">
     30<project name="oseam" default="dist" basedir=".">
    3131
    3232        <!-- enter the SVN commit message -->
     
    4343     -->
    4444        <property name="josm"                   location="../../../../core/dist/josm-custom.jar"/>
    45         <property name="smed"                                   location="../../../../dist/smed.jar/"/>
     45        <property name="smed"                                   location="../../core/dist/smed.jar"/>
    4646        <property name="plugin.build.dir"       value="build"/>
    4747        <property name="plugin.src.dir"         value="src"/>
    4848        <property name="smed.build.dir"         value="../../../smed/build"/>
    49         <property name="smed.src.dir"           value="../../../smed/src"/>
     49        <property name="delete_string"          value="*${ant.project.name}.jar"/>
    5050        <!-- this is the directory where the plugin jar is copied to -->
    51         <property name="plugin.dist.dir"        value="../../../../dist"/>
     51        <property name="plugin.dist.dir"        value="../../dist"/>
    5252        <property name="ant.build.javac.target" value="1.5"/>
    5353        <property name="plugin.jar"             value="${plugin.dist.dir}/00_${DSTAMP}_${TSTAMP}_${ant.project.name}.jar"/>
     
    6060        <target name="init">
    6161                <mkdir dir="${plugin.build.dir}"/>
    62         </target>
    63 
    64         <!--
    65     **********************************************************
    66     ** init_smed - initializes the build of smed
    67     **********************************************************
    68     -->
    69         <target name="init_smed">
    70                 <mkdir dir="${smed.build.dir}"/>
    71         </target>
    72 
    73         <!--
    74     **********************************************************
    75     ** compile_smed - compiles the source tree of smed
    76     **********************************************************
    77     -->
    78         <target name="compile_smed" depends="init_smed">
    79                 <echo message="compiling sources for smed.jar ... "/>
    80                 <javac srcdir="${smed.src.dir}" classpath="${josm}" debug="true" destdir="${smed.build.dir}">
    81                         <compilerarg value="-Xlint:deprecation"/>
    82                         <compilerarg value="-Xlint:unchecked"/>
    83                 </javac>
     62                <mkdir dir="${plugin.dist.dir}"/>
    8463        </target>
    8564       
    8665        <!--
    8766    **********************************************************
    88     ** dist_smed - creates smed.jar
    89     **********************************************************
    90     -->
    91         <target name="dist_smed" depends="compile_smed">
    92                 <echo message="creating smed.jar ... "/>
    93 
    94                 <copy todir="${smed.build.dir}/images">
    95                         <fileset dir="${smed.src.dir}/images"/>
    96                 </copy>
    97                
    98                 <copy todir="${smed.build.dir}/images">
    99                         <fileset dir="../../../smed/images"/>
    100                 </copy>
    101 
    102                 <copy todir="${smed.build.dir}/smed/msg">
    103                         <fileset dir="${smed.src.dir}/smed/msg"/>
    104                 </copy>
    105 
    106                 <copy todir="${smed.build.dir}">
    107                         <fileset dir="../../../smed">
    108                 <include name="*.txt" />
    109                         </fileset>
    110                 </copy>
    111 
    112                 <jar destfile="${smed}" basedir="${smed.build.dir}">
    113                         <!--
    114         ************************************************
    115         ** configure these properties. Most of them will be copied to the plugins
    116         ** manifest file. Property values will also show up in the list available
    117         ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
    118         **
    119         ************************************************
    120     -->
    121                         <manifest>
    122                                 <attribute name="Author" value="Werner"/>
    123                                 <attribute name="Plugin-Class" value="smed.Smed"/>
    124                                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    125                                 <attribute name="Plugin-Description" value="Create and edit seamaps for OpenSeaMap"/>
    126                                 <attribute name="Plugin-Icon" value="images/Smed.png"/>
    127                                 <attribute name="Plugin-Link" value="http://openseamap.org/"/>
    128                                 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    129                                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    130                         </manifest>
    131                 </jar>
    132         </target>
    133 
    134         <!--
    135     **********************************************************
    13667    ** compile - complies the source tree
    13768    **********************************************************
    13869    -->
    139         <target name="compile" depends="init,dist_smed">
     70        <target name="compile" depends="init">
    14071                <echo message="compiling sources for  ${plugin.jar} ... "/>
    14172                <javac srcdir="src" classpath="${josm}:${smed}" debug="true" destdir="${plugin.build.dir}">
     
    16192                        <fileset dir="images"/>
    16293                </copy>
    163                 <copy todir="${plugin.build.dir}/oseam/msg">
    164                         <fileset dir="${plugin.src.dir}/oseam/msg"/>
     94                <copy todir="${plugin.build.dir}/${ant.project.name}/msg">
     95                        <fileset dir="${plugin.src.dir}/${ant.project.name}/msg"/>
    16596                </copy>
    16697                <copy todir="${plugin.build.dir}">
     
    173104                <delete>
    174105                        <fileset dir="${plugin.dist.dir}">
    175                         <include name="*OSeaM.jar"/>
     106                        <include name="${delete_string}"/>
    176107                        </fileset>
    177108                </delete>
     
    196127                                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    197128                                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    198                                 <attribute name="Class-Path" value="./tplug/ifc.jar"/>
    199129                        </manifest>
    200130                </jar>
     
    227157        <target name="clean">
    228158                <delete dir="${plugin.build.dir}"/>
    229                 <delete file="${plugin.jar}"/>
    230159                <delete>
    231160                        <fileset dir="${plugin.dist.dir}">
    232                         <include name="*OSeaM.jar"/>
     161                        <include name="${delete_string}"/>
    233162                        </fileset>
    234163                </delete>
     
    238167    **********************************************************
    239168    ** install - install the plugin in your local JOSM installation
    240     **********************************************************
    241     -->
    242         <target name="install" depends="dist">
     169    ** for developing
     170    **********************************************************
     171    -->
     172        <target name="install-develop" depends="dist">
    243173                <property environment="env"/>
    244174                <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins/splug" else="${user.home}/.josm/plugins/splug">
     
    250180                <delete>
    251181                        <fileset dir="${josm.plugins.dir}">
    252                         <include name="*OSeaM.jar"/>
     182                        <include name="${delete_string}"/>
    253183                        </fileset>
    254184                </delete>
    255 
     185               
    256186                <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    257         </target>
    258 
     187
     188                <delete file="${plugin.jar}"/>
     189               
     190        </target>
    259191
    260192        <!--
     
    264196                ** extracts the JOSM release for the JOSM version in ../core and saves it in the
    265197                ** property ${coreversion.info.entry.revision}
    266                 **
    267                 -->
     198                **
     199                -->
     200       
    268201        <target name="core-info">
    269202                <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
     
    278211                <delete file="core.info.xml" />
    279212        </target>
    280 
     213       
    281214        <!--
    282215                ** commits the source tree for this plugin
     
    354287        </target>
    355288
    356         <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
     289        <target name="publish"> <!-- depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist" -->
     290                <echo>No normal josm-plugin, publishing over smed !!!
     291                        1. ant - dist to each subplugin
     292                        2. ant publish to smed
     293                </echo>
    357294        </target>
    358295</project>
Note: See TracChangeset for help on using the changeset viewer.