Skip to content

Commit

Permalink
Update urls in package meta data (#105)
Browse files Browse the repository at this point in the history
The old urls still pointed to the common repo
  • Loading branch information
mpkorstanje authored Nov 14, 2022
1 parent 1afdaef commit f4c6267
Show file tree
Hide file tree
Showing 73 changed files with 248 additions and 248 deletions.
4 changes: 2 additions & 2 deletions dotnet/Cucumber.Messages/Cucumber.Messages.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<Copyright>Copyright &#xA9; Cucumber Ltd, TechTalk</Copyright>
<Description>Protocol Buffer messages for Cucumber's and SpecFlow's inter-process communication</Description>
<PackageTags>cucumber-messages cucumber specflow gherkin</PackageTags>
<PackageProjectUrl>https://github.com/cucumber/common/tree/main/messages</PackageProjectUrl>
<RepositoryUrl>https://github.com/cucumber/common</RepositoryUrl>
<PackageProjectUrl>https://github.com/cucumber/messages</PackageProjectUrl>
<RepositoryUrl>https://github.com/cucumber/messages</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>cucumber-mark-green-128.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion elixir/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule CucumberMessages.MixProject do
@moduledoc false
use Mix.Project

@github "https://github.com/cucumber/common/tree/main/messages/elixir"
@github "https://github.com/cucumber/messages"

def project do
[
Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/messages-java.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/messages-java.git</developerConnection>
<url>git://github.com/cucumber/messages-java.git</url>
<connection>scm:git:git://github.com/cucumber/messages.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/messages.git</developerConnection>
<url>git://github.com/cucumber/messages.git</url>
<tag>HEAD</tag>
</scm>

Expand Down
6 changes: 3 additions & 3 deletions jsonschema/scripts/templates/perl.pm.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Cucumber::Messages;
# DO NOT CHANGE THIS FILE!!

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

=head1 NAME

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

=head1 DESCRIPTION

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

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion jsonschema/scripts/templates/php.enum.php.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
declare(strict_types=1);

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

<%- namespaces = enum[:name].split('\\') -%>
Expand Down
4 changes: 2 additions & 2 deletions jsonschema/scripts/templates/php.php.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
declare(strict_types=1);

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

namespace Cucumber\Messages;
Expand All @@ -15,7 +15,7 @@ use Cucumber\Messages\DecodingException\SchemaViolationException;

/**
* Represents the <%= class_name(key) %> message in Cucumber's message protocol
* @see https://github.com/cucumber/common/tree/main/messages#readme
* @see https://github.com/cucumber/messages
*
<%=- format_description(schema['description'], indent_string: '') -%> */
final class <%= class_name(key) %> implements JsonSerializable
Expand Down
4 changes: 2 additions & 2 deletions jsonschema/scripts/templates/ruby.rb.erb
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
require 'cucumber/messages/message'

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

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

##
# Represents the <%= class_name(key) %> message in Cucumber's {message protocol}[https://github.com/cucumber/common/tree/main/messages#readme].
# Represents the <%= class_name(key) %> message in Cucumber's {message protocol}[https://github.com/cucumber/messages].
#
<%= format_description(schema['description']) %>
#
Expand Down
2 changes: 1 addition & 1 deletion jsonschema/scripts/templates/ruby_deserializers.rb.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'cucumber/messages.dtos'
require 'json'

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

module Cucumber
Expand Down
6 changes: 3 additions & 3 deletions perl/dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ is_trial = 0
copyright_holder = Erik Huelsmann, Cucumber Ltd

[MetaResources]
bugtracker.web = https://github.com/cucumber/common/issues
repository.url = https://github.com/cucumber/common.git
repository.web = https://github.com/cucumber/common/messages/perl
bugtracker.web = https://github.com/cucumber/messages/issues
repository.url = https://github.com/cucumber/messages.git
repository.web = https://github.com/cucumber/messages
repository.type = git

[@Filter]
Expand Down
Loading

0 comments on commit f4c6267

Please sign in to comment.