Bump versions for 2.2.0 release
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.parser / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2011, Red Hat, Inc.
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
11 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12 <modelVersion>4.0.0</modelVersion>
13
14 <parent>
15 <artifactId>org.eclipse.tracecompass.ctf-parent</artifactId>
16 <groupId>org.eclipse.tracecompass</groupId>
17 <version>2.2.0-SNAPSHOT</version>
18 </parent>
19
20 <name>Trace Compass CTF Parser Plug-in</name>
21 <artifactId>org.eclipse.tracecompass.ctf.parser</artifactId>
22 <version>1.0.0-SNAPSHOT</version>
23 <packaging>eclipse-plugin</packaging>
24
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.eclipse.tycho</groupId>
29 <artifactId>tycho-source-plugin</artifactId>
30 </plugin>
31 <!-- Do not delete the existing .java parser files in target/ -->
32 <plugin>
33 <artifactId>maven-clean-plugin</artifactId>
34 <configuration>
35 <excludeDefaultDirectories>true</excludeDefaultDirectories>
36 <filesets>
37 <fileset>
38 <directory>target</directory>
39 <followSymlinks>false</followSymlinks>
40 <includes>
41 <include>*/**</include>
42 </includes>
43 <excludes>
44 <exclude>generated-sources/antlr3/org/eclipse/tracecompass/ctf/parser/CTFLexer.java</exclude>
45 <exclude>generated-sources/antlr3/org/eclipse/tracecompass/ctf/parser/CTFParser.java</exclude>
46 </excludes>
47 </fileset>
48 </filesets>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53
54 <!-- Only rebuild the CTF grammar files if the ctf-grammar profile is active -->
55 <profiles>
56 <profile>
57 <id>ctf-grammar</id>
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.antlr</groupId>
62 <artifactId>antlr3-maven-plugin</artifactId>
63 <version>3.5.2</version>
64 <executions>
65 <execution>
66 <goals>
67 <goal>antlr</goal>
68 </goals>
69 </execution>
70 </executions>
71 <dependencies>
72 <dependency>
73 <groupId>org.antlr</groupId>
74 <artifactId>antlr-runtime</artifactId>
75 <version>3.5.2</version>
76 </dependency>
77 </dependencies>
78 </plugin>
79 </plugins>
80 </build>
81 </profile>
82 </profiles>
83
84 </project>
This page took 0.033281 seconds and 5 git commands to generate.