组织ID: |
org.antlr |
项目ID: |
gunit |
版本: |
1.0.1 |
最后修改时间: |
2019-03-07 10:52:11 |
包类型: |
jar |
标题: |
Antlr Gunit |
描述: |
Unit testing framework for antlr grammars. |
相关URL: |
http://www.antlr.org/wiki/display/ANTLR3/gUnit+-+Grammar+Unit+Testing |
大小: |
33.83KB |
|
Maven引入代码: |
<dependency>
<groupId>org.antlr</groupId>
<artifactId>gunit</artifactId>
<version>1.0.1</version>
</dependency>
|
Gradle引入代码: |
org.antlr:gunit:1.0.1
|
下载Jar包: |
|
POM文件内容: |
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.antlr</groupId>
<artifactId>gunit</artifactId>
<packaging>jar</packaging>
<name>Antlr Gunit</name>
<version>1.0.1</version>
<url>http://www.antlr.org/wiki/display/ANTLR3/gUnit+-+Grammar+Unit+Testing</url>
<description>Unit testing framework for antlr grammars.</description>
<developers>
<developer>
<name>Jen-Yuan Su Leon</name>
<email>leonsu@mac.com</email>
</developer>
</developers>
<inceptionYear>2007</inceptionYear>
<scm>
<url>http://code.kmdconsulting.ca/?p=gunit.git</url>
<connection>scm:git:http://code.kmdconsulting.ca/gunit.git</connection>
</scm>
<licenses>
<license>
<name>BSD</name>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>src</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>antlr</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr</artifactId>
<version>3.0.1</version>
</dependency>
<!-- these dependencies should not be required, there is a bug in the antlr
3.0.1 jar file that makes it rely on the previous version -->
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.7</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>stringtemplate</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.antlr.gunit.Interp.class
org.antlr.gunit.JUnitCodeGen.class
org.antlr.gunit.gUnitExecuter$StreamVacuum.class
org.antlr.gunit.gUnitExecuter.class
org.antlr.gunit.gUnitLexer.class
org.antlr.gunit.gUnitParser$file_return.class
org.antlr.gunit.gUnitParser$input_return.class
org.antlr.gunit.gUnitParser.class
org.antlr.gunit.gUnitTestInput.class
org.antlr.gunit.gUnitTestSuite.class
org/antlr/gunit/junit.stg
META-INF/maven/org.antlr/gunit/pom.xml
META-INF/maven/org.antlr/gunit/pom.properties
|
依赖Jar: |
maven-project-2.0.jar
/org.apache.maven/maven-project/2.0
查看maven-project所有版本文件
antlr-3.0.1.jar
/org.antlr/antlr/3.0.1
查看antlr所有版本文件
antlr-2.7.7.jar
/antlr/antlr/2.7.7
查看antlr所有版本文件
stringtemplate-3.0.jar
/org.antlr/stringtemplate/3.0
查看stringtemplate所有版本文件
junit-4.1.jar
/junit/junit/4.1
查看junit所有版本文件
|