removal of binary and SVN entries
[DTRulesParser.git] / pom.xml
blob7a86fc056ff8df7c6ffde8e858bbab4a941104e0
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2   <parent>
3     <artifactId>RulesEngine</artifactId>
4     <groupId>com.dtrules</groupId>
5     <version>1.20-SNAPSHOT</version>
6   </parent>
7   <modelVersion>4.0.0</modelVersion>
8   <groupId>com.dtrules</groupId>
9   <artifactId>DTParser</artifactId>
10   <name>DTParser</name>
11   <version>1.20-SNAPSHOT</version>
12   <url>http://maven.apache.org</url>
13 <build>
14   <plugins>
15             <plugin>
16                 <groupId>org.codehaus.mojo</groupId>
17                 <artifactId>exec-maven-plugin</artifactId>
18                <executions>
19           <execution>
20                         <id>generate-bnf</id>
21               <phase>generate-sources</phase>
22             <goals>
23               <goal>exec</goal>
24             </goals>
25           </execution>
26         </executions>
27         <configuration>
28                         <executable>parser.bat</executable>
29            </configuration>
30             </plugin>
31                 </plugins>
32 </build>
33   <dependencies>
34     <dependency>
35       <groupId>java_cup</groupId>
36       <artifactId>java-cup</artifactId>
37       <version>11a</version>
38     </dependency>
39   </dependencies>
40 </project>