Skip to content

Update brand to BNY #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.MD
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Thank you for visiting BNY Mellon's GitHub.
Thank you for visiting BNY's GitHub.

We currently do not accept external code contributions.

We appreciate any potential issues or concerns reported by the community, and may elect to address them at our sole discretion.

Thank you for your interest!

BNY Mellon
BNY
4 changes: 2 additions & 2 deletions calendar-kata-solutions/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@
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>bnymellon.codekatas</groupId>
<groupId>bny.codekatas</groupId>
<artifactId>calendar-kata-solutions</artifactId>
<version>1.0.0-SNAPSHOT</version>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.LocalDate;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.LocalDate;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.DayOfWeek;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.Instant;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.DayOfWeek;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.LocalDate;
Expand Down
12 changes: 6 additions & 6 deletions calendar-kata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ and [ThreeTen-Extra](http://www.threeten.org/threeten-extra/) libraries.

The domain for the Calendar kata is an object representation of an Outlook Calendar.
There are several domain classes that are shared by all of the exercises. These are
[`MyCalendar`](./src/main/java/bnymellon/codekatas/calendarkata/MyCalendar.java),
[`Meeting`](./src/main/java/bnymellon/codekatas/calendarkata/Meeting.java),
[`WorkWeek`](./src/main/java/bnymellon/codekatas/calendarkata/WorkWeek.java),
[`FullWeek`](./src/main/java/bnymellon/codekatas/calendarkata/FullWeek.java),
[`FullMonth`](./src/main/java/bnymellon/codekatas/calendarkata/FullMonth.java) and
[`MyCalendar`](src/main/java/bny/codekatas/calendarkata/MyCalendar.java),
[`Meeting`](src/main/java/bny/codekatas/calendarkata/Meeting.java),
[`WorkWeek`](src/main/java/bny/codekatas/calendarkata/WorkWeek.java),
[`FullWeek`](src/main/java/bny/codekatas/calendarkata/FullWeek.java),
[`FullMonth`](src/main/java/bny/codekatas/calendarkata/FullMonth.java) and

![Diagram](mycalendar.png)
</p>

### How to get started

* There are failing tests in [`MyCalendarTest`](./src/test/java/bnymellon/codekatas/calendarkata/MyCalendarTest.java)
* There are failing tests in [`MyCalendarTest`](./src/test/java/bny/codekatas/calendarkata/MyCalendarTest.java)
* Make the tests pass by following and completing the TODOs in MyCalendar, WorkWeek, FullMonth and FullWeek.
4 changes: 2 additions & 2 deletions calendar-kata/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@
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>bnymellon.codekatas</groupId>
<groupId>bny.codekatas</groupId>
<artifactId>calendar-kata</artifactId>
<version>1.0.0-SNAPSHOT</version>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.LocalDate;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.LocalDate;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.DayOfWeek;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.Instant;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.DayOfWeek;
import java.time.LocalDate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.calendarkata;
package bny.codekatas.calendarkata;

import java.time.Duration;
import java.time.LocalDate;
Expand Down
4 changes: 2 additions & 2 deletions code-point-kata-solutions/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@
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>bnymellon.codekatas</groupId>
<groupId>bny.codekatas</groupId>
<artifactId>code-point-kata-solutions</artifactId>
<version>1.0.0-SNAPSHOT</version>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.codepointkata;
package bny.codekatas.codepointkata;

import java.nio.file.Files;
import java.nio.file.Path;
Expand Down
4 changes: 2 additions & 2 deletions code-point-kata/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@
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>bnymellon.codekatas</groupId>
<groupId>bny.codekatas</groupId>
<artifactId>code-point-kata</artifactId>
<version>1.0.0-SNAPSHOT</version>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Bank of New York Mellon.
* Copyright 2024 The Bank of New York Mellon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package bnymellon.codekatas.codepointkata;
package bny.codekatas.codepointkata;

import org.eclipse.collections.api.bag.primitive.CharBag;
import org.eclipse.collections.api.bag.primitive.MutableCharBag;
Expand Down
4 changes: 2 additions & 2 deletions coffee-shop-kata-solutions/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The Bank of New York Mellon.
~ Copyright 2024 The Bank of New York Mellon.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@
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>bnymellon.codekatas</groupId>
<groupId>bny.codekatas</groupId>
<version>1.0.0-SNAPSHOT</version>

<artifactId>coffee-shop-kata-solutions</artifactId>
Expand Down
Loading
Loading