Skip to content

Commit 174406b

Browse files
authored
Merge pull request #164 from marketdataapi/transfer-repository
#0 Transfer repository from dev.sorn to com.marketdataapi
2 parents 9228235 + d0d58d9 commit 174406b

508 files changed

Lines changed: 2614 additions & 2601 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE/api-integration-resquest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

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

1414
---
1515

.github/ISSUE_TEMPLATE/value-object-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

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

1414
---
1515

.github/PULL_REQUEST_TEMPLATE/api-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: ''
88
---
99

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

1414
---

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Do not introduce new abstractions or unrelated refactors.
1515
- `ZERO` instead of `BigDecimal.ZERO`
1616
- `emptyMap()` instead of `Map.of()`
1717
- `symbol(String)` instead of `FmpSymbol.symbol(String)`
18-
- Prefer value objects from `dev.sorn.fmp4j.types`
18+
- Prefer value objects from `com.marketdataapi.fmp4j.types`
1919
- For value objects/types, create a static factory method named after the type
2020
- Example: `symbol(String)` instead of `FmpSymbol.of(String)`
2121
- All models are Java 16+ records
@@ -26,7 +26,7 @@ Do not introduce new abstractions or unrelated refactors.
2626

2727
- Only implement FMP stable endpoints
2828
- Add required and optional parameters as per FMP docs
29-
- Use appropriate value types from `dev.sorn.fmp4j.types`
29+
- Use appropriate value types from `com.marketdataapi.fmp4j.types`
3030
- Prefer reusing existing models for exact matches
3131
- Prefix new models with `Fmp`
3232
- Service naming: `Fmp<Model>Service`

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import dev.sorn.fmp4j.CoveragePlugin
2-
import dev.sorn.fmp4j.SnakeCaseMethodFormatter
1+
import com.marketdataapi.fmp4j.CoveragePlugin
2+
import com.marketdataapi.fmp4j.SnakeCaseMethodFormatter
33

44
plugins {
55
id 'java-library'
@@ -12,7 +12,7 @@ plugins {
1212

1313
apply plugin: CoveragePlugin
1414

15-
group = 'dev.sorn.fmp4j'
15+
group = 'com.marketdataapi.fmp4j'
1616
version = projectVersion
1717

1818
java {

buildSrc/src/main/groovy/dev/sorn/fmp4j/CoveragePlugin.groovy renamed to buildSrc/src/main/groovy/com/marketdataapi/fmp4j/CoveragePlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sorn.fmp4j
1+
package com.marketdataapi.fmp4j
22

33
import org.gradle.api.Plugin
44
import org.gradle.api.Project

buildSrc/src/main/java/dev/sorn/fmp4j/SnakeCaseMethodFormatter.java renamed to buildSrc/src/main/java/com/marketdataapi/fmp4j/SnakeCaseMethodFormatter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sorn.fmp4j;
1+
package com.marketdataapi.fmp4j;
22

33
import com.diffplug.spotless.FormatterStep;
44
import java.io.File;
@@ -10,7 +10,7 @@
1010

1111
public class SnakeCaseMethodFormatter implements FormatterStep {
1212
@Serial
13-
private static final long serialVersionUID = 1L;
13+
private static final long serialVersionUID = 100L;
1414

1515
// Set of annotations that identify a method as a unit test
1616
private static final Pattern TEST_METHOD_PATTERN = Pattern.compile(

buildSrc/src/test/java/dev/sorn/fmp4j/SnakeCaseMethodFormatterTest.java renamed to buildSrc/src/test/java/com/marketdataapi/fmp4j/SnakeCaseMethodFormatterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.sorn.fmp4j;
1+
package com.marketdataapi.fmp4j;
22

33
import static org.junit.jupiter.api.Assertions.assertAll;
44
import static org.junit.jupiter.api.Assertions.assertEquals;

docs/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ java version "17"
3030
## 2. Clone the Project
3131

3232
```bash
33-
git clone https://github.com/sorndotdev/fmp4j.git
33+
git clone https://github.com/marketdataapi/fmp4j.git
3434
cd fmp4j
3535
```
3636

0 commit comments

Comments
 (0)