| 组织ID: |
info.cukes |
| 项目ID: |
gherkin |
| 版本: |
2.7.3 |
| 最后修改时间: |
2018-09-28 17:07:31 |
| 包类型: |
jar |
| 标题: |
Gherkin |
| 描述: |
Pure Java Gherkin |
| 相关URL: |
https://github.com/cucumber/gherkin |
| 大小: |
1.10MB |
|
|
| Maven引入代码: |
<dependency>
<groupId>info.cukes</groupId>
<artifactId>gherkin</artifactId>
<version>2.7.3</version>
</dependency>
|
| Gradle引入代码: |
info.cukes:gherkin:2.7.3
|
| 下载Jar包: |
|
| POM文件内容: |
<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>info.cukes</groupId>
<artifactId>gherkin</artifactId>
<version>2.7.3</version>
<packaging>jar</packaging>
<name>Gherkin</name>
<description>Pure Java Gherkin</description>
<url>https://github.com/cucumber/gherkin</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>6</version>
</parent>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/cucumber/gherkin.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/gherkin.git</developerConnection>
<url>git://github.com/cucumber/gherkin.git</url>
</scm>
<distributionManagement>
<site>
<id>cukes</id>
<url>scp://cukes.info/var/www/cucumber_site/gherkin/api/java/${project.version}</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>net.iharder</groupId>
<artifactId>base64</artifactId>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.0-rc1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/../lib</directory>
<includes>
<include>gherkin/parser/*.txt</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>gherkin/*.properties</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<mainClass>gherkin.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>bind-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>jarjar-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jarjar</goal>
</goals>
<configuration>
<includes>
<include>com.googlecode.json-simple:json-simple</include>
<include>net.iharder:base64</include>
</includes>
<rules>
<rule>
<pattern>org.json.simple.**</pattern>
<result>gherkin.deps.org.json.simple.@1</result>
</rule>
<rule>
<pattern>net.iharder.**</pattern>
<result>gherkin.deps.net.iharder.@1</result>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<copy file="${project.build.directory}/jarjar/uber-${project.build.finalName}.jar"
tofile="${basedir}/../lib/gherkin.jar"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
gherkin.formatter.ansi.AnsiEscapes.class
gherkin.formatter.AnsiFormats$1.class
gherkin.formatter.AnsiFormats$ColorFormat.class
gherkin.formatter.AnsiFormats.class
gherkin.formatter.Argument.class
gherkin.formatter.Filter.class
gherkin.formatter.FilterFormatter.class
gherkin.formatter.Format.class
gherkin.formatter.Formats.class
gherkin.formatter.Formatter.class
gherkin.formatter.JSONFormatter$1.class
gherkin.formatter.JSONFormatter.class
gherkin.formatter.LineFilter.class
gherkin.formatter.Mappable.class
gherkin.formatter.model.Background.class
gherkin.formatter.model.BasicStatement.class
gherkin.formatter.model.Builder.class
gherkin.formatter.model.CellResult.class
gherkin.formatter.model.Comment.class
gherkin.formatter.model.CommentHolder.class
gherkin.formatter.model.DataTableRow.class
gherkin.formatter.model.DescribedStatement.class
gherkin.formatter.model.DocString.class
gherkin.formatter.model.Examples$Builder.class
gherkin.formatter.model.Examples.class
gherkin.formatter.model.ExamplesTableRow.class
gherkin.formatter.model.Feature.class
gherkin.formatter.model.Match.class
gherkin.formatter.model.Range.class
gherkin.formatter.model.Result.class
gherkin.formatter.model.Row$DiffType.class
gherkin.formatter.model.Row.class
gherkin.formatter.model.Scenario.class
gherkin.formatter.model.ScenarioOutline.class
gherkin.formatter.model.Step$Builder.class
gherkin.formatter.model.Step.class
gherkin.formatter.model.Tag.class
gherkin.formatter.model.TagStatement.class
gherkin.formatter.MonochromeFormats$1.class
gherkin.formatter.MonochromeFormats.class
gherkin.formatter.NiceAppendable.class
gherkin.formatter.PatternFilter.class
gherkin.formatter.PrettyFormatter$1.class
gherkin.formatter.PrettyFormatter$2.class
gherkin.formatter.PrettyFormatter.class
gherkin.formatter.Reporter.class
gherkin.formatter.StepPrinter.class
gherkin.formatter.TagFilter.class
gherkin.I18n$1.class
gherkin.I18n$2.class
gherkin.I18n.class
gherkin/I18n.properties
gherkin/I18nKeywords_ar.properties
gherkin/I18nKeywords_bg.properties
gherkin/I18nKeywords_ca.properties
gherkin/I18nKeywords_cs.properties
gherkin/I18nKeywords_cy_GB.properties
gherkin/I18nKeywords_da.properties
gherkin/I18nKeywords_de.properties
gherkin/I18nKeywords_en.properties
gherkin/I18nKeywords_en_AU.properties
gherkin/I18nKeywords_en_LOL.properties
gherkin/I18nKeywords_en_PIRATE.properties
gherkin/I18nKeywords_en_SCOUSE.properties
gherkin/I18nKeywords_en_TX.properties
gherkin/I18nKeywords_eo.properties
gherkin/I18nKeywords_es.properties
gherkin/I18nKeywords_et.properties
gherkin/I18nKeywords_fi.properties
gherkin/I18nKeywords_fr.properties
gherkin/I18nKeywords_he.properties
gherkin/I18nKeywords_hr.properties
gherkin/I18nKeywords_hu.properties
gherkin/I18nKeywords_id.properties
gherkin/I18nKeywords_in.properties
gherkin/I18nKeywords_is.properties
gherkin/I18nKeywords_it.properties
gherkin/I18nKeywords_iw.properties
gherkin/I18nKeywords_ja.properties
gherkin/I18nKeywords_ko.properties
gherkin/I18nKeywords_lt.properties
gherkin/I18nKeywords_lu.properties
gherkin/I18nKeywords_lv.properties
gherkin/I18nKeywords_nl.properties
gherkin/I18nKeywords_no.properties
gherkin/I18nKeywords_pl.properties
gherkin/I18nKeywords_pt.properties
gherkin/I18nKeywords_ro.properties
gherkin/I18nKeywords_ru.properties
gherkin/I18nKeywords_sk.properties
gherkin/I18nKeywords_sr_CYRL.properties
gherkin/I18nKeywords_sr_LATN.properties
gherkin/I18nKeywords_sv.properties
gherkin/I18nKeywords_tr.properties
gherkin/I18nKeywords_uk.properties
gherkin/I18nKeywords_uz.properties
gherkin/I18nKeywords_vi.properties
gherkin/I18nKeywords_zh_CN.properties
gherkin/I18nKeywords_zh_TW.properties
gherkin.JSONParser.class
gherkin.lexer.i18n.AR.class
gherkin.lexer.i18n.BG.class
gherkin.lexer.i18n.CA.class
gherkin.lexer.i18n.CS.class
gherkin.lexer.i18n.CY_GB.class
gherkin.lexer.i18n.DA.class
gherkin.lexer.i18n.DE.class
gherkin.lexer.i18n.EN.class
gherkin.lexer.i18n.EN_AU.class
gherkin.lexer.i18n.EN_LOL.class
gherkin.lexer.i18n.EN_PIRATE.class
gherkin.lexer.i18n.EN_SCOUSE.class
gherkin.lexer.i18n.EN_TX.class
gherkin.lexer.i18n.EO.class
gherkin.lexer.i18n.ES.class
gherkin.lexer.i18n.ET.class
gherkin.lexer.i18n.FI.class
gherkin.lexer.i18n.FR.class
gherkin.lexer.i18n.HE.class
gherkin.lexer.i18n.HR.class
gherkin.lexer.i18n.HU.class
gherkin.lexer.i18n.ID.class
gherkin.lexer.i18n.IS.class
gherkin.lexer.i18n.IT.class
gherkin.lexer.i18n.JA.class
gherkin.lexer.i18n.KO.class
gherkin.lexer.i18n.LT.class
gherkin.lexer.i18n.LU.class
gherkin.lexer.i18n.LV.class
gherkin.lexer.i18n.NL.class
gherkin.lexer.i18n.NO.class
gherkin.lexer.i18n.PL.class
gherkin.lexer.i18n.PT.class
gherkin.lexer.i18n.RO.class
gherkin.lexer.i18n.RU.class
gherkin.lexer.i18n.SK.class
gherkin.lexer.i18n.SR_CYRL.class
gherkin.lexer.i18n.SR_LATN.class
gherkin.lexer.i18n.SV.class
gherkin.lexer.i18n.TR.class
gherkin.lexer.i18n.UK.class
gherkin.lexer.i18n.UZ.class
gherkin.lexer.i18n.VI.class
gherkin.lexer.i18n.ZH_CN.class
gherkin.lexer.i18n.ZH_TW.class
gherkin.lexer.I18nLexer.class
gherkin.lexer.Lexer.class
gherkin.lexer.LexingError.class
gherkin.lexer.Listener.class
gherkin.Main$1.class
gherkin.Main.class
gherkin.parser.FormatterListener$1.class
gherkin.parser.FormatterListener$Stash.class
gherkin.parser.FormatterListener.class
gherkin/parser/meta.txt
gherkin.parser.ParseError.class
gherkin.parser.Parser$Machine.class
gherkin.parser.Parser.class
gherkin/parser/root.txt
gherkin.parser.StateMachineReader.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
json-simple-1.1.jar
/com.googlecode.json-simple/json-simple/1.1
查看json-simple所有版本文件
base64-2.3.8.jar
/net.iharder/base64/2.3.8
查看base64所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
mockito-all-1.9.0-rc1.jar
/org.mockito/mockito-all/1.9.0-rc1
查看mockito-all所有版本文件
|