-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (78 loc) · 2.48 KB
/
pom.xml
File metadata and controls
95 lines (78 loc) · 2.48 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.toolazydogs</groupId>
<artifactId>root</artifactId>
<version>3</version>
</parent>
<groupId>com.toolazydogs.lua4j</groupId>
<artifactId>lua4j</artifactId>
<name>Lua for Java</name>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>A contemporary implementation of Lua</description>
<url>http://github.com/maguro/lua4j</url>
<issueManagement>
<system>github</system>
<url>http://github.com/maguro/lua4j/issues</url>
</issueManagement>
<developers>
<developer>
<id>maguro</id>
<name>Alan D. Cabrera</name>
<roles>
<role>Architect</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<version>${antlrVersion}</version>
<executions>
<execution>
<goals>
<goal>antlr</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>git://github.com/maguro/lua4j.git</connection>
<developerConnection>git@github.com:maguro/lua4j.git</developerConnection>
<url>http://github.com/maguro/lua4j.git</url>
</scm>
<properties>
<antlrVersion>3.3</antlrVersion>
<mavenVersion>2.2.0</mavenVersion>
</properties>
<dependencies>
<dependency>
<groupId>com.toolazydogs.aunit</groupId>
<artifactId>aunit-junit</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr</artifactId>
<version>${antlrVersion}</version>
</dependency>
<dependency>
<groupId>org.livetribe</groupId>
<artifactId>livetribe-jsr223</artifactId>
<version>2.0.6</version>
</dependency>
</dependencies>
</project>