Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/api-integration-resquest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ assignees: ''

**Instructions**
Replace *all* example values below with your actual implementation details. Do **not** keep the examples as-is. Make
sure to read the full [documentation](https://github.com/sorndotdev/fmp4j/tree/master/docs) before contributing.
sure to read the full [documentation](https://github.com/marketdataapi/fmp4j/tree/master/docs) before contributing.

---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/value-object-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ assignees: ''

**Instructions**
Replace *all* example values below with your actual implementation details. Do **not** keep the examples as-is. Make
sure to read the full [documentation](https://github.com/sorndotdev/fmp4j/tree/master/docs) before contributing.
sure to read the full [documentation](https://github.com/marketdataapi/fmp4j/tree/master/docs) before contributing.

---

Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE/api-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ assignees: ''
---

**Instructions**
This PR should correspond to an [API Integration issue](https://github.com/sorndotdev/fmp4j/issues).
This PR should correspond to an [API Integration issue](https://github.com/marketdataapi/fmp4j/issues).
Replace *all* example values with real implementation details. Do **not** leave placeholders or examples unchanged.

---
Expand Down
4 changes: 2 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Do not introduce new abstractions or unrelated refactors.
- `ZERO` instead of `BigDecimal.ZERO`
- `emptyMap()` instead of `Map.of()`
- `symbol(String)` instead of `FmpSymbol.symbol(String)`
- Prefer value objects from `dev.sorn.fmp4j.types`
- Prefer value objects from `com.marketdataapi.fmp4j.types`
- For value objects/types, create a static factory method named after the type
- Example: `symbol(String)` instead of `FmpSymbol.of(String)`
- All models are Java 16+ records
Expand All @@ -26,7 +26,7 @@ Do not introduce new abstractions or unrelated refactors.

- Only implement FMP stable endpoints
- Add required and optional parameters as per FMP docs
- Use appropriate value types from `dev.sorn.fmp4j.types`
- Use appropriate value types from `com.marketdataapi.fmp4j.types`
- Prefer reusing existing models for exact matches
- Prefix new models with `Fmp`
- Service naming: `Fmp<Model>Service`
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import dev.sorn.fmp4j.CoveragePlugin
import dev.sorn.fmp4j.SnakeCaseMethodFormatter
import com.marketdataapi.fmp4j.CoveragePlugin
import com.marketdataapi.fmp4j.SnakeCaseMethodFormatter

plugins {
id 'java-library'
Expand All @@ -12,7 +12,7 @@ plugins {

apply plugin: CoveragePlugin

group = 'dev.sorn.fmp4j'
group = 'com.marketdataapi.fmp4j'
version = projectVersion

java {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.sorn.fmp4j
package com.marketdataapi.fmp4j

import org.gradle.api.Plugin
import org.gradle.api.Project
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.sorn.fmp4j;
package com.marketdataapi.fmp4j;

import com.diffplug.spotless.FormatterStep;
import java.io.File;
Expand All @@ -10,7 +10,7 @@

public class SnakeCaseMethodFormatter implements FormatterStep {
@Serial
private static final long serialVersionUID = 1L;
private static final long serialVersionUID = 100L;

// Set of annotations that identify a method as a unit test
private static final Pattern TEST_METHOD_PATTERN = Pattern.compile(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.sorn.fmp4j;
package com.marketdataapi.fmp4j;

import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
Expand Down
2 changes: 1 addition & 1 deletion docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ java version "17"
## 2. Clone the Project

```bash
git clone https://github.com/sorndotdev/fmp4j.git
git clone https://github.com/marketdataapi/fmp4j.git
cd fmp4j
```

Expand Down
Loading
Loading