Skip to content
Merged
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
20 changes: 12 additions & 8 deletions data/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ var (
Name: "Book Server",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/ibraginsky/book-server",
URL: "https://github.com/konveyor-ecosystem/book-server",
Branch: "ci-oct2025", // branch is a Tag name, similar in following apps
},
}
TackleTestappPublic = api.Application{
Name: "Tackle Testapp public",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/konveyor/tackle-testapp-public",
Branch: "ci-2024",
},
}
CustomerTomcatLegacy = api.Application{
Expand All @@ -41,22 +43,23 @@ var (
Kind: "git",
URL: "https://github.com/konveyor/example-applications.git",
Path: "example-1",
Branch: "ci-2023",
},
}
Coolstore = api.Application{
Name: "Coolstore",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/konveyor-ecosystem/coolstore",
Branch: "konveyor-tests",
Branch: "ci-2024",
},
}
CoolstoreQuarkus = api.Application{
Name: "Coolstore",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/konveyor-ecosystem/coolstore",
Branch: "quarkus",
Branch: "ci-2024-quarkus",
},
}
Daytrader = api.Application{
Expand All @@ -70,26 +73,27 @@ var (
Name: "Apache Wicket",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/windup/windup-sample-apps.git",
URL: "https://github.com/konveyor-ecosystem/windup-sample-apps.git",
Path: "test-files/src_example/org/apache/wicket",
Branch: "ci-2020",
},
}
PetclinicHazelcast = api.Application{
Name: "Petclinic",
Description: "Spring framework app",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/savitharaghunathan/spring-framework-petclinic.git",
Branch: "legacy",
URL: "https://github.com/konveyor/spring-framework-petclinic.git",
Branch: "ci-2023-legacy",
},
}
SeamBooking = api.Application{
Name: "Seam booking 5.2",
Repository: &api.Repository{
Kind: "git",
URL: "https://github.com/windup/windup.git",
URL: "https://github.com/konveyor-ecosystem/windup.git",
Path: "test-files/seam-booking-5.2",
Branch: "master",
Branch: "ci-2024",
},
}

Expand Down
Loading