|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>io.cucumber</groupId> |
| 8 | + <artifactId>cucumber-parent</artifactId> |
| 9 | + <version>4.4.0</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>usage-formatter</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>Usage Formatter</name> |
| 16 | + <description>Writes usage statistics for step definitions</description> |
| 17 | + <url>https://github.com/cucumber/usage-formatter</url> |
| 18 | + |
| 19 | + <properties> |
| 20 | + <project.Automatic-Module-Name>io.cucumber.usageformatter</project.Automatic-Module-Name> |
| 21 | + <project.build.outputTimestamp>1758245480</project.build.outputTimestamp> |
| 22 | + </properties> |
| 23 | + |
| 24 | + <scm> |
| 25 | + <connection>scm:git:git://github.com/cucumber/usage-formatter.git</connection> |
| 26 | + < developerConnection>scm:git: [email protected]:cucumber/usage-formatter.git</ developerConnection> |
| 27 | + <url>git://github.com/cucumber/usage-formatter.git</url> |
| 28 | + <tag>HEAD</tag> |
| 29 | + </scm> |
| 30 | + |
| 31 | + <dependencyManagement> |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>org.junit</groupId> |
| 35 | + <artifactId>junit-bom</artifactId> |
| 36 | + <version>6.0.0</version> |
| 37 | + <type>pom</type> |
| 38 | + <scope>import</scope> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>com.fasterxml.jackson</groupId> |
| 43 | + <artifactId>jackson-bom</artifactId> |
| 44 | + <version>2.20.0</version> |
| 45 | + <type>pom</type> |
| 46 | + <scope>import</scope> |
| 47 | + </dependency> |
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>org.assertj</groupId> |
| 51 | + <artifactId>assertj-bom</artifactId> |
| 52 | + <version>3.27.6</version> |
| 53 | + <type>pom</type> |
| 54 | + <scope>import</scope> |
| 55 | + </dependency> |
| 56 | + </dependencies> |
| 57 | + </dependencyManagement> |
| 58 | + |
| 59 | + <dependencies> |
| 60 | + <dependency> |
| 61 | + <groupId>io.cucumber</groupId> |
| 62 | + <artifactId>messages</artifactId> |
| 63 | + <version>[29.0.1,31.0.0)</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>io.cucumber</groupId> |
| 67 | + <artifactId>query</artifactId> |
| 68 | + <version>[14.3.0,15.0.0)</version> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <dependency> |
| 72 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 73 | + <artifactId>jackson-databind</artifactId> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <dependency> |
| 78 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 79 | + <artifactId>jackson-datatype-jdk8</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <dependency> |
| 84 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 85 | + <artifactId>jackson-module-parameter-names</artifactId> |
| 86 | + <scope>test</scope> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <dependency> |
| 90 | + <groupId>org.assertj</groupId> |
| 91 | + <artifactId>assertj-core</artifactId> |
| 92 | + <scope>test</scope> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <dependency> |
| 96 | + <groupId>org.junit.jupiter</groupId> |
| 97 | + <artifactId>junit-jupiter</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + </dependencies> |
| 101 | +</project> |
0 commit comments