Changeset 28967 in osm


Ignore:
Timestamp:
2012-11-22T00:28:41+01:00 (12 years ago)
Author:
donvip
Message:

[josm_videomapping] Make plugin use log4j plugin

Location:
applications/editors/josm/plugins/videomapping
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/videomapping/.classpath

    r28924 r28967  
    33        <classpathentry kind="src" path="src"/>
    44        <classpathentry kind="src" path="test"/>
    5         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    6         <classpathentry kind="lib" path="lib/log4j.jar"/>
    7         <classpathentry kind="lib" path="lib/vlcj-2.1.0.jar" sourcepath="lib/vlcj-2.1.0-sources.jar">
     5        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
     6        <classpathentry exported="true" kind="lib" path="lib/vlcj-2.1.0.jar" sourcepath="lib/vlcj-2.1.0-sources.jar">
    87                <attributes>
    98                        <attribute name="javadoc_location" value="jar:platform:/resource/VideoMapping/lib/vlcj-2.1.0-javadoc.jar!/"/>
     
    1110        </classpathentry>
    1211        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    13         <classpathentry kind="lib" path="lib/jna-3.4.0.jar"/>
    14         <classpathentry kind="lib" path="lib/platform-3.4.0.jar"/>
     12        <classpathentry exported="true" kind="lib" path="lib/jna-3.4.0.jar"/>
     13        <classpathentry exported="true" kind="lib" path="lib/platform-3.4.0.jar"/>
     14        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-log4j"/>
    1515        <classpathentry kind="output" path="bin"/>
    1616</classpath>
  • applications/editors/josm/plugins/videomapping/.project

    r21555 r28967  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<projectDescription>
    3         <name>VideoMapping</name>
     3        <name>JOSM-videomapping</name>
    44        <comment></comment>
    55        <projects>
  • applications/editors/josm/plugins/videomapping/build.xml

    r28924 r28967  
    4545    <property name="jna" value="${plugin.lib.dir}/jna-3.4.0.jar"/>
    4646    <property name="platform" value="${plugin.lib.dir}/platform-3.4.0.jar"/>
    47     <property name="log4j" value="${plugin.lib.dir}/log4j.jar"/>
    4847    <!-- classpath -->
    4948    <path id="classpath">
     
    5352        <pathelement location="${jna}"/>
    5453        <pathelement location="${platform}"/>
    55         <pathelement location="${log4j}"/>
     54        <fileset dir="../log4j/lib">
     55            <include name="**/*.jar"/>
     56        </fileset>
    5657    </path>
    5758    <!--
     
    108109                <attribute name="Plugin-Icon" value="images/videomapping.png"/>
    109110                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
     111                <attribute name="Plugin-Requires" value="log4j"/>
    110112                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    111113            </manifest>
    112114            <!--added to bundle libs-->
    113115            <zipfileset src="${jna}"/>
    114             <zipfileset src="${log4j}"/>
    115116            <zipfileset src="${platform}"/>
    116117            <zipfileset src="${vlcj}"/>
Note: See TracChangeset for help on using the changeset viewer.