| 组织ID: |
io.cucumber |
| 项目ID: |
cucumber-expressions |
| 版本: |
5.0.3 |
| 最后修改时间: |
2019-11-29 17:29:02 |
| 包类型: |
jar |
| 标题: |
cucumber-expressions |
| 描述: |
Cucumber Expressions |
| 相关URL: |
https://github.com/cucumber/cucumber-expressions-java |
| 大小: |
42.31KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-expressions</artifactId>
<version>5.0.3</version>
</dependency>
|
| Gradle引入代码: |
io.cucumber:cucumber-expressions:5.0.3
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0"?>
<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>io.cucumber</groupId>
<artifactId>cucumber-expressions</artifactId>
<version>5.0.3</version>
<packaging>bundle</packaging>
<name>cucumber-expressions</name>
<description>Cucumber Expressions</description>
<url>https://github.com/cucumber/cucumber-expressions-java</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</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/cucumber-expressions-java.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/cucumber-expressions-java.git</developerConnection>
<url>git://github.com/cucumber/cucumber-expressions-java.git</url>
<tag>v5.0.3</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!-- 21.0 and beyond requires Java 8 -->
<version>20.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<argLine>${surefireArgLine}</argLine>
<useFile>false</useFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<version>3.2.0</version>
<configuration>
<instructions>
<Bundle-Description />
<Export-Package>io.cucumber.cucumberexpressions.*</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<!--
Prepares the property pointing to the JaCoCo runtime agent which
is passed as VM argument when Maven the Surefire plugin is executed.
-->
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<!-- Sets the path to the file which contains the execution data. -->
<destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
<!--
Sets the name of the property containing the settings
for JaCoCo runtime agent.
-->
<propertyName>surefireArgLine</propertyName>
</configuration>
</execution>
<!--
Ensures that the code coverage report for unit tests is created after
unit tests have been run.
-->
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<!-- Sets the path to the file which contains the execution data. -->
<dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
<!-- Sets the output directory for the code coverage report. -->
<outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>test</id>
<properties>
<env>test</env>
<gebEnv>test</gebEnv>
<jacoco.skip>false</jacoco.skip>
<maven.test.skip>false</maven.test.skip>
<skip.unit.tests>false</skip.unit.tests>
</properties>
</profile>
<profile>
<id>release-sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<useAgent>true</useAgent>
<gpgArguments>
<arg>--local-user</arg>
<arg>devs@cucumber.io</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins>
</reporting>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco-maven-plugin.version>0.7.7.201606060606</jacoco-maven-plugin.version>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/io.cucumber/cucumber-expressions/pom.properties
META-INF/maven/io.cucumber/cucumber-expressions/pom.xml
io.cucumber.cucumberexpressions.AmbiguousParameterTypeException.class
io.cucumber.cucumberexpressions.Argument.class
io.cucumber.cucumberexpressions.CombinatorialGeneratedExpressionFactory.class
io.cucumber.cucumberexpressions.CucumberExpression.class
io.cucumber.cucumberexpressions.CucumberExpressionException.class
io.cucumber.cucumberexpressions.CucumberExpressionGenerator.class
io.cucumber.cucumberexpressions.DuplicateTypeNameException.class
io.cucumber.cucumberexpressions.Expression.class
io.cucumber.cucumberexpressions.ExpressionFactory.class
io.cucumber.cucumberexpressions.Function.class
io.cucumber.cucumberexpressions.GeneratedExpression.class
io.cucumber.cucumberexpressions.Group.class
io.cucumber.cucumberexpressions.GroupBuilder.class
io.cucumber.cucumberexpressions.NumberParser.class
io.cucumber.cucumberexpressions.ParameterType.class
io.cucumber.cucumberexpressions.ParameterTypeMatcher.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$1.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$10.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$2.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$3.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$4.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$5.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$6.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$7.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$8.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry$9.class
io.cucumber.cucumberexpressions.ParameterTypeRegistry.class
io.cucumber.cucumberexpressions.RegularExpression$1.class
io.cucumber.cucumberexpressions.RegularExpression.class
io.cucumber.cucumberexpressions.SingleTransformer.class
io.cucumber.cucumberexpressions.Transformer.class
io.cucumber.cucumberexpressions.TreeRegexp$IntRange.class
io.cucumber.cucumberexpressions.TreeRegexp.class
io.cucumber.cucumberexpressions.TypeReference.class
io.cucumber.cucumberexpressions.UndefinedParameterTypeException.class
|
| 依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
gson-2.8.0.jar
/com.google.code.gson/gson/2.8.0
查看gson所有版本文件
guava-20.0.jar
/com.google.guava/guava/20.0
查看guava所有版本文件
|