You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/09/26 11:33:01 UTC

svn commit: r579534 - /lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml

Author: andreas
Date: Wed Sep 26 02:33:01 2007
New Revision: 579534

URL: http://svn.apache.org/viewvc?rev=579534&view=rev
Log:
Adding antlr build file

Added:
    lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml

Added: lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml
URL: http://svn.apache.org/viewvc/lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml?rev=579534&view=auto
==============================================================================
--- lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml (added)
+++ lenya/branches/branch_1_2_x_shibboleth/src/targets/antlr-build.xml Wed Sep 26 02:33:01 2007
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+
+<!-- $Id: test-build.xml 473841 2006-11-12 00:46:38Z gregor $ -->
+
+<project name="antlr">
+  
+  <target name="antlr.compile">
+    <property name="antlr.build" value="build/lenya/antlr"/>
+    <mkdir dir="${antlr.build}"/>
+    <antlr:antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr"
+      target="src/java/org/apache/lenya/ac/impl/expressions-grammar.antlr"
+      outputdirectory="${antlr.build}">
+      <jvmarg value="-Djava.compiler=NONE"/>
+      <classpath>
+        <fileset dir="tools/lib">
+          <include name="antlr-*.jar"/>
+        </fileset>
+      </classpath>
+    </antlr:antlr3>
+    
+    
+  </target>
+  
+</project>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org