| 组织ID: |
io.cucumber |
| 项目ID: |
tag-expressions |
| 版本: |
1.1.0 |
| 最后修改时间: |
2019-11-30 06:28:32 |
| 包类型: |
jar |
| 标题: |
Cucumber Tag Expressions |
| 描述: |
Parses boolean infix expressions |
| 相关URL: |
https://github.com/cucumber/tag-expressions-java |
| 大小: |
14.27KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>tag-expressions</artifactId>
<version>1.1.0</version>
</dependency>
|
| Gradle引入代码: |
io.cucumber:tag-expressions:1.1.0
|
| 下载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>tag-expressions</artifactId>
<version>1.1.0</version>
<packaging>bundle</packaging>
<name>Cucumber Tag Expressions</name>
<description>Parses boolean infix expressions</description>
<url>https://github.com/cucumber/tag-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/tag-expressions-java.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/tag-expressions-java.git</developerConnection>
<url>git://github.com/cucumber/tag-expressions-java.git</url>
<tag>v1.1.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</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.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.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.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/tag-expressions/pom.properties
META-INF/maven/io.cucumber/tag-expressions/pom.xml
io.cucumber.tagexpressions.Expression.class
io.cucumber.tagexpressions.TagExpressionException.class
io.cucumber.tagexpressions.TagExpressionParser$1.class
io.cucumber.tagexpressions.TagExpressionParser$2.class
io.cucumber.tagexpressions.TagExpressionParser$And.class
io.cucumber.tagexpressions.TagExpressionParser$Assoc.class
io.cucumber.tagexpressions.TagExpressionParser$Literal.class
io.cucumber.tagexpressions.TagExpressionParser$Not.class
io.cucumber.tagexpressions.TagExpressionParser$Or.class
io.cucumber.tagexpressions.TagExpressionParser$TokenType.class
io.cucumber.tagexpressions.TagExpressionParser$True.class
io.cucumber.tagexpressions.TagExpressionParser.class
|
| 依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|