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 2008/11/19 23:38:10 UTC

svn commit: r719103 - /lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml

Author: andreas
Date: Wed Nov 19 14:38:10 2008
New Revision: 719103

URL: http://svn.apache.org/viewvc?rev=719103&view=rev
Log:
Adding buildfile for ac module.

Added:
    lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml

Added: lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml
URL: http://svn.apache.org/viewvc/lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml?rev=719103&view=auto
==============================================================================
--- lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml (added)
+++ lenya/sandbox/access_control_redesign/src/modules-core/ac/build.xml Wed Nov 19 14:38:10 2008
@@ -0,0 +1,34 @@
+<?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" default="antlr.compile">
+  
+  <target name="antlr.compile" description="Generate the ANTLR parser for attribute rule evaluation">
+    <property name="module.dir" value=""/>
+    <property name="antlr.package" value="org/apache/lenya/ac/attr/antlr"/>
+    <mkdir dir="${build.dir}/modules/ac/${antlr.package}"/>
+    <antlr:antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr"
+      target="${module.dir}/java/src/${antlr.package}/Expressions.g"
+      outputdirectory="${module.dir}/java/src/${antlr.package}">
+      <jvmarg value="-Djava.compiler=NONE"/>
+    </antlr:antlr3>
+  </target>
+  
+</project>



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