Skip to content

Commit f4c6267

Browse files
authored
Update urls in package meta data (#105)
The old urls still pointed to the common repo
1 parent 1afdaef commit f4c6267

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+248
-248
lines changed

dotnet/Cucumber.Messages/Cucumber.Messages.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<Copyright>Copyright &#xA9; Cucumber Ltd, TechTalk</Copyright>
2222
<Description>Protocol Buffer messages for Cucumber's and SpecFlow's inter-process communication</Description>
2323
<PackageTags>cucumber-messages cucumber specflow gherkin</PackageTags>
24-
<PackageProjectUrl>https://github.com/cucumber/common/tree/main/messages</PackageProjectUrl>
25-
<RepositoryUrl>https://github.com/cucumber/common</RepositoryUrl>
24+
<PackageProjectUrl>https://github.com/cucumber/messages</PackageProjectUrl>
25+
<RepositoryUrl>https://github.com/cucumber/messages</RepositoryUrl>
2626
<RepositoryType>git</RepositoryType>
2727
<PackageIcon>cucumber-mark-green-128.png</PackageIcon>
2828
<PackageLicenseExpression>MIT</PackageLicenseExpression>

elixir/mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule CucumberMessages.MixProject do
22
@moduledoc false
33
use Mix.Project
44

5-
@github "https://github.com/cucumber/common/tree/main/messages/elixir"
5+
@github "https://github.com/cucumber/messages"
66

77
def project do
88
[

java/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
</properties>
2222

2323
<scm>
24-
<connection>scm:git:git://github.com/cucumber/messages-java.git</connection>
25-
<developerConnection>scm:git:[email protected]:cucumber/messages-java.git</developerConnection>
26-
<url>git://github.com/cucumber/messages-java.git</url>
24+
<connection>scm:git:git://github.com/cucumber/messages.git</connection>
25+
<developerConnection>scm:git:[email protected]:cucumber/messages.git</developerConnection>
26+
<url>git://github.com/cucumber/messages.git</url>
2727
<tag>HEAD</tag>
2828
</scm>
2929

jsonschema/scripts/templates/perl.pm.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Cucumber::Messages;
33
# DO NOT CHANGE THIS FILE!!
44

55
# The code was auto-generated by this script:
6-
# https://github.com/cucumber/common/blob/main/messages/jsonschema/scripts/codegen.rb
6+
# https://github.com/cucumber/messages/blob/main/jsonschema/scripts/codegen.rb
77

88
=head1 NAME
99

@@ -22,7 +22,7 @@ Cucumber::Messages - Library of classes to encapsulate Cucumber messages
2222

2323
=head1 DESCRIPTION
2424

25-
L<Cucumber messages|https://github.com/cucumber/common/tree/main/messages>
25+
L<Cucumber messages|https://github.com/cucumber/messages>
2626
define the central protocol in the Cucumber ecosystem by which the various
2727
components communicate. Messages are serialized to NDJSON.
2828

@@ -53,7 +53,7 @@ package Cucumber::Messages::<%= class_name(key) %> {
5353
=head3 DESCRIPTION
5454

5555
Represents the <%= class_name(key) %> message in Cucumber's
56-
L<message protocol|https://github.com/cucumber/common/tree/main/messages#readme>.
56+
L<message protocol|https://github.com/cucumber/messages>.
5757

5858
<%= format_description(schema['description']) %>
5959

jsonschema/scripts/templates/php.enum.php.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
declare(strict_types=1);
66

77
/**
8-
* This code was auto-generated by {this script}[https://github.com/cucumber/common/blob/main/messages/jsonschema/scripts/codegen.rb]
8+
* This code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/jsonschema/scripts/codegen.rb]
99
*/
1010

1111
<%- namespaces = enum[:name].split('\\') -%>

jsonschema/scripts/templates/php.php.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
declare(strict_types=1);
66

77
/**
8-
* This code was auto-generated by {this script}[https://github.com/cucumber/common/blob/main/messages/jsonschema/scripts/codegen.rb]
8+
* This code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/jsonschema/scripts/codegen.rb]
99
*/
1010

1111
namespace Cucumber\Messages;
@@ -15,7 +15,7 @@ use Cucumber\Messages\DecodingException\SchemaViolationException;
1515

1616
/**
1717
* Represents the <%= class_name(key) %> message in Cucumber's message protocol
18-
* @see https://github.com/cucumber/common/tree/main/messages#readme
18+
* @see https://github.com/cucumber/messages
1919
*
2020
<%=- format_description(schema['description'], indent_string: '') -%> */
2121
final class <%= class_name(key) %> implements JsonSerializable

jsonschema/scripts/templates/ruby.rb.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
require 'cucumber/messages/message'
22

3-
# The code was auto-generated by {this script}[https://github.com/cucumber/common/blob/main/messages/jsonschema/scripts/codegen.rb]
3+
# The code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/jsonschema/scripts/codegen.rb]
44
#
55

66
module Cucumber
77
module Messages
88
<%- @schemas.each do |key, schema| %>
99

1010
##
11-
# Represents the <%= class_name(key) %> message in Cucumber's {message protocol}[https://github.com/cucumber/common/tree/main/messages#readme].
11+
# Represents the <%= class_name(key) %> message in Cucumber's {message protocol}[https://github.com/cucumber/messages].
1212
#
1313
<%= format_description(schema['description']) %>
1414
#

jsonschema/scripts/templates/ruby_deserializers.rb.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require 'cucumber/messages.dtos'
22
require 'json'
33

4-
# The code was auto-generated by {this script}[https://github.com/cucumber/common/blob/main/messages/jsonschema/scripts/codegen.rb]
4+
# The code was auto-generated by {this script}[https://github.com/cucumber/messages/blob/main/jsonschema/scripts/codegen.rb]
55
#
66

77
module Cucumber

perl/dist.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ is_trial = 0
1212
copyright_holder = Erik Huelsmann, Cucumber Ltd
1313

1414
[MetaResources]
15-
bugtracker.web = https://github.com/cucumber/common/issues
16-
repository.url = https://github.com/cucumber/common.git
17-
repository.web = https://github.com/cucumber/common/messages/perl
15+
bugtracker.web = https://github.com/cucumber/messages/issues
16+
repository.url = https://github.com/cucumber/messages.git
17+
repository.web = https://github.com/cucumber/messages
1818
repository.type = git
1919

2020
[@Filter]

0 commit comments

Comments
 (0)