Skip to content
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

✨ feat(manifest): Add a manifest file #193

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
45958e6
:test_tube: Add test for the manifest
dylanmsql May 9, 2023
7e96c9e
:sparkles: Generate a manifest file
dylanmsql May 9, 2023
6d3534a
:bug: fix(manifest): Fix destination folder of the manifest
dylanmsql May 9, 2023
772a81e
:recycle: refacto(manifest): Change all absolute path to relative path
dylanmsql May 9, 2023
e97d52c
:recycle: refacto(manifest): Move Manifest class in UbiquitousLanguag…
dylanmsql May 9, 2023
2015694
:recycle: refactor(manifest): Change place of the manifest file and p…
dylanmsql May 10, 2023
21fe332
:recycle: refactor(AssertFileContent): Refacto assertion mechanism by…
dylanmsql May 10, 2023
8a9d11a
Revert ":recycle: refactor(AssertFileContent): Refacto assertion mech…
dylanmsql May 10, 2023
f3b846e
:recycle: refacto(manifest): change manifest paths to relative path
dylanmsql May 22, 2023
fb7c419
:recycle: feat(manifest): refacto manifest class
dylanmsql Jun 12, 2023
04afe59
:recycle: feat(manifest): refacto manifest test
dylanmsql Jun 12, 2023
837669f
:recycle: feat(manifest): refacto manifest test
dylanmsql Jun 12, 2023
196f3f4
Merge branch 'main' into feat/manifest
dylanmsql Jun 12, 2023
4a8fe47
feat(manifest): fix manifest test after merging
dylanmsql Jun 12, 2023
a7ec1c8
:recycle: feat(manifest): add static method to build ManifestDto
dylanmsql Jun 14, 2023
97c0613
:recycle: feat(serialization): add classes to handle serialization logic
dylanmsql Jun 14, 2023
7d61256
:recycle: feat(serialization): Add factory to create a json or yml se…
dylanmsql Jun 15, 2023
90a0722
:recycle: feat(serialization): remove useless comment
dylanmsql Jul 11, 2023
91cf1fa
:recycle: feat(serialization): move initDirectory to UbiquitousLangua…
dylanmsql Jul 11, 2023
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
Prev Previous commit
Next Next commit
♻️ feat(manifest): add static method to build ManifestDto
  • Loading branch information
dylanmsql committed Jun 14, 2023
commit a7ec1c8da364772110df39aa94abe7608ac50cce
4 changes: 4 additions & 0 deletions src/main/java/io/candydoc/plugin/model/ManifestDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@
public final class ManifestDto {

private List<String> files;

public static ManifestDto from(List<String> files) {
return ManifestDto.builder().files(files).build();
}
}