File: pom.xml

package info (click to toggle)
antlr4 4.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,328 kB
  • sloc: java: 45,008; javascript: 1,121; xml: 1,077; python: 73; cs: 71; sh: 29; makefile: 9
file content (77 lines) | stat: -rw-r--r-- 2,601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!--
  ~ Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
  ~ Use of this file is governed by the BSD 3-clause license that
  ~ can be found in the LICENSE.txt file in the project root.
  -->

<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">

  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.antlr</groupId>
    <artifactId>antlr4-master</artifactId>
    <version>4.9.2</version>
  </parent>
  <artifactId>antlr4-tool-testsuite</artifactId>
  <name>ANTLR 4 Tool Tests</name>
  <description>A collection of tests for ANTLR 4 Runtime libraries.</description>

  <prerequisites>
    <maven>3.0</maven>
  </prerequisites>

  <inceptionYear>2009</inceptionYear>

  <dependencies>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>ST4</artifactId>
      <version>4.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>antlr4-runtime-testsuite</artifactId>
      <version>${project.version}</version>
			<scope>test</scope>
			<type>test-jar</type>
    </dependency>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>antlr4</artifactId>
      <version>${project.version}</version>
			<scope>test</scope>
		</dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <sourceDirectory>src</sourceDirectory>
    <testSourceDirectory>test</testSourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.12.4</version>
        <configuration>
          <!-- SUREFIRE-951: file.encoding cannot be set via systemPropertyVariables -->
          <argLine>-Dfile.encoding=UTF-8</argLine>
          <includes>
            <include>**/Test*.java</include>
          </includes>
          <systemPropertyVariables>
            <antlr-python2-runtime>../../antlr4-python2/src</antlr-python2-runtime>
            <antlr-python3-runtime>../../antlr4-python3/src</antlr-python3-runtime>
            <antlr-cpp-runtime>../../antlr4-cpp/src</antlr-cpp-runtime>
            <antlr-javascript-runtime>../../antlr4-javascript/src</antlr-javascript-runtime>
          </systemPropertyVariables>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>