source: other-projects/rsyntax-textarea/devel-packages/jflex-1.4.3/examples/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: 1.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>de.flex.examples</groupId>
7 <artifactId>parent</artifactId>
8 <version>1</version>
9 <name>examples</name>
10 <description>
11 Examples on how to use JFlex and maven-jflex-plugin
12 </description>
13 <packaging>pom</packaging>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>de.jflex.maven.plugin</groupId>
18 <artifactId>maven-jflex-plugin</artifactId>
19 <version>0.3</version>
20 <executions>
21 <execution>
22 <goals>
23 <goal>generate</goal>
24 </goals>
25 </execution>
26 </executions>
27 </plugin>
28 </plugins>
29 </build>
30 <pluginRepositories>
31 <pluginRepository>
32 <id>jflex</id>
33 <name>JFlex repository</name>
34 <url>http://jflex.sourceforge.net/repo/</url>
35 </pluginRepository>
36 </pluginRepositories>
37 <dependencyManagement>
38 <dependencies>
39 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
42 <version>3.8.2</version>
43 <scope>test</scope>
44 </dependency>
45 </dependencies>
46 </dependencyManagement>
47 <modules>
48 <module>simple-maven</module>
49 <module>standalone-maven</module>
50 </modules>
51</project>
52
Note: See TracBrowser for help on using the repository browser.