Skip to content
Open
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The repository is organized by programming language and tool:
- `shell/`: 🐚 Shell recipes
- `dvcli/`: 🛠️ DVCLI recipes
- `js/`: 🌐 JavaScript recipes
- `java/` ☕ Java recipes


Each language directory contains specific recipes organized by functionality or use case.
Expand Down Expand Up @@ -53,6 +54,10 @@ In the following sections, you can find a list of available recipes for each lan

- [Metadata Block Management](js/metadatablocks)

### Java ☕

- [Dataverse Update By Flyway Migrations](java/update-by-flyway)

## 🤝 Contributing

We welcome contributions! To add a new recipe:
Expand Down
7 changes: 7 additions & 0 deletions java/update-by-flyway/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.flattened-pom.xml
target/

# Exclude dumps that may be around here
/*.sql
# Don't keep track of local extra migrations
/local/*.sql
Loading