File: pom.xml

package info (click to toggle)
jtb 1.4.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 27,276 kB
  • sloc: java: 20,955; xml: 697; makefile: 13
file content (75 lines) | stat: -rw-r--r-- 2,484 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	
	<groupId>edu.purdue.cs</groupId>
	<artifactId>jtb</artifactId>
	<version>1.4.12</version>
	
	<name>JTB: Java Tree Builder</name>
	
	<url>https://github.com/jtb-javacc/JTB</url>
	
	<description>JTB is a syntax tree builder to be used with the Java Compiler Compiler (JavaCC) parser generator. JTB was originally developped at UCLA up to version 1.3.2 (http://compilers.cs.ucla.edu/jtb/) or (http://compilers.cs.ucla.edu/jtb/jtb-2003/). It has been upgraded in version 1.4.0+ (2009-2010), as an embedded tool within the SourceForge Eclipse JavaCC plugin. It is now (2011) provided as a standalone tool in the same hosting environment as JavaCC. </description>
	
	<organization>
		<name>jtb-javacc</name>
		<url>https://github.com/jtb-javacc</url>
	</organization>
	
	<scm>
		<url>https://github.com/jtb-javacc/JTB</url>
		<connection>scm:git:git@github.com/jtb-javacc/JTB.git</connection>
	</scm>
	
	<developers>
		<developer>
			<name>Dr. Jens Palsberg</name>
			<organization>http://www.cs.ucla.edu/</organization>
			<organizationUrl>http://web.cs.ucla.edu/~palsberg/</organizationUrl>
		</developer>
		<developer>
			<name>Kevin Tao</name>
			<organization>Active Network</organization>
			<organizationUrl>https://www.crunchbase.com/organization/active-network</organizationUrl>
		</developer>
		<developer>
			<name>Wanjun Wang</name>
		</developer>
	</developers>
	
	<contributors>
		<contributor>
			<name>Marc MAZAS</name>
			<organization>Sopra</organization>
			<email>marc.mazas@soprasteria.com</email>
		</contributor>
		<contributor>
			<name>Francis ANDRE</name>
			<email>francis.andre.kampbell@orange.fr</email>
			<organization>Kampbell</organization>
			<organizationUrl></organizationUrl>
		</contributor>
	</contributors>
	<issueManagement>
		<url>https://github.com/jtb-javacc/JTB/issues</url>
		<system>GitHub</system>
	</issueManagement>
	
	<licenses>
		<license>
			<name>UCLA Compilers Group License</name>
			<url>http://compilers.cs.ucla.edu/jtb/license.html</url>
		</license>
	</licenses>
	
	<dependencies>
		<dependency>
			<groupId>net.java.dev.javacc</groupId>
			<artifactId>javacc</artifactId>
			<version>7.0.0</version>
		</dependency>
	</dependencies>
</project>