| [35282] | 1 | <?xml version="1.0" encoding="utf-8"?> | 
|---|
|  | 2 | <project name="comfort0" default="dist" basedir="."> | 
|---|
|  | 3 |  | 
|---|
|  | 4 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> | 
|---|
|  | 5 | <property name="plugin.main.version" value="9229"/> | 
|---|
|  | 6 | <property name="plugin.canloadatruntime" value="true"/> | 
|---|
|  | 7 |  | 
|---|
|  | 8 | <property name="plugin.author" value="simon04"/> | 
|---|
|  | 9 | <property name="plugin.class" value="org.wikipedia.WikipediaPlugin"/> <!--TODO--> | 
|---|
|  | 10 | <property name="plugin.description" value="Allows editing data in Level0L format"/> | 
|---|
|  | 11 | <property name="plugin.icon" value="images/thetha.svg"/> | 
|---|
|  | 12 | <property name="plugin.link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/Comfort0"/> | 
|---|
|  | 13 |  | 
|---|
|  | 14 | <!-- ** include targets that all plugins have in common ** --> | 
|---|
|  | 15 | <import file="../build-common.xml"/> | 
|---|
|  | 16 |  | 
|---|
| [35283] | 17 | <property name="javacc.home" location="../../core/tools"/> | 
|---|
|  | 18 | <property name="parser.dir" location="src/net/simon04/comfort0/level0l"/> | 
|---|
|  | 19 | <target name="javacc" depends="init" unless="javacc.notRequired"> | 
|---|
|  | 20 | <mkdir dir="${parser.dir}/parsergen"/> | 
|---|
|  | 21 | <exec append="false" executable="java" failifexecutionfails="true"> | 
|---|
|  | 22 | <arg value="-cp"/> | 
|---|
|  | 23 | <arg value="${javacc.home}/javacc.jar"/> | 
|---|
|  | 24 | <arg value="javacc"/> | 
|---|
|  | 25 | <arg value="-DEBUG_PARSER=false"/> | 
|---|
|  | 26 | <arg value="-DEBUG_TOKEN_MANAGER=false"/> | 
|---|
|  | 27 | <arg value="-JDK_VERSION=1.7"/> | 
|---|
|  | 28 | <arg value="-GRAMMAR_ENCODING=UTF-8"/> | 
|---|
|  | 29 | <arg value="-OUTPUT_DIRECTORY=${parser.dir}/parsergen"/> | 
|---|
|  | 30 | <arg value="${parser.dir}/Level0LParser.jj"/> | 
|---|
|  | 31 | </exec> | 
|---|
|  | 32 | </target> | 
|---|
|  | 33 |  | 
|---|
| [35282] | 34 | </project> | 
|---|