source: other-projects/rsyntax-textarea/devel-packages/jflex-1.4.3/examples/simple-maven/pom.xml@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 998 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>de.flex.examples</groupId>
6 <artifactId>parent</artifactId>
7 <version>1</version>
8 </parent>
9 <artifactId>simple-maven</artifactId>
10 <version>0.1</version>
11 <name>A scanner for a toy programming language.</name>
12 <description>It is the example from the JLex website with some small
13 modifications, to make it a bit more readable.
14
15 It does nothing really useful, because there is no parser for
16 the toy programming language. It's just a demonstration how a
17 small simple scanner looks like.</description>
18 <dependencies>
19 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <scope>test</scope>
23 </dependency>
24 </dependencies>
25</project>
26
Note: See TracBrowser for help on using the repository browser.