-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1435 from skingle/main
979 - Extract versionScheme, scaladocUrl, developers from pom files
- Loading branch information
Showing
14 changed files
with
170 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
modules/core/shared/src/main/scala/scaladex/core/model/Contributor.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package scaladex.core.model | ||
|
||
/** | ||
* Description of a person who has contributed to the project, but | ||
* who does not have | ||
* commit privileges. Usually, these contributions come in | ||
* the form of patches submitted. | ||
*/ | ||
case class Contributor( | ||
name: Option[String], | ||
email: Option[String], | ||
url: Option[String], | ||
organization: Option[String], | ||
organizationUrl: Option[String], | ||
roles: List[String], | ||
/* | ||
The timezone the contributor is in. Typically, this is a number in the range | ||
<a href="http://en.wikipedia.org/wiki/UTC%E2%88%9212:00">-12</a> to <a href="http://en.wikipedia.org/wiki/UTC%2B14:00">+14</a> | ||
or a valid time zone id like "America/Montreal" (UTC-05:00) or "Europe/Paris" (UTC+01:00). | ||
*/ | ||
timezone: Option[String], | ||
// Properties about the contributor, such as an instant messenger handle. | ||
properties: Map[String, String], | ||
// Developer | ||
// The unique ID of the developer in the SCM. | ||
id: Option[String] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
modules/infra/src/main/resources/migrations/V22__new_artifact_fields.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE artifacts | ||
ADD COLUMN scaladoc_url VARCHAR, | ||
ADD COLUMN version_scheme VARCHAR, | ||
ADD COLUMN developers VARCHAR NOT NULL DEFAULT '[]'; |
Oops, something went wrong.