File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
src/main/java/org/commonwl/view/workflow Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 86
86
<!-- Liquibase; note that Flyway, while probably having more documentation and users,
87
87
changed its license model. Similarly to mongo, we prefer an open license that
88
88
won't lock users or developers from updating or modifying the code if necessary.
89
- Hence our choice for liquibase. Feel free to suggest alternatives, but keep in
89
+ Hence, our choice for liquibase. Feel free to suggest alternatives, but keep in
90
90
mind the license.
91
91
-->
92
92
<dependency >
159
159
<artifactId >commons-io</artifactId >
160
160
<version >2.18.0</version >
161
161
</dependency >
162
+ <!-- Lang, used by Liquibase 4.30/0+ -->
163
+ <dependency >
164
+ <groupId >org.apache.commons</groupId >
165
+ <artifactId >commons-lang3</artifactId >
166
+ <version >3.17.0</version >
167
+ </dependency >
162
168
<!-- For JSR-303, javax.validation -->
163
169
<dependency >
164
170
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change @@ -74,10 +74,7 @@ public Page<Workflow> listWorkflowsJson(
74
74
*
75
75
* @return A list of all the workflows
76
76
*/
77
- @ GetMapping (
78
- value = "/workflows" ,
79
- params = "search" ,
80
- produces = MediaType .APPLICATION_JSON_VALUE )
77
+ @ GetMapping (value = "/workflows" , params = "search" , produces = MediaType .APPLICATION_JSON_VALUE )
81
78
public Page <Workflow > searchWorkflowsJson (
82
79
Model model ,
83
80
@ PageableDefault (size = 10 ) Pageable pageable ,
@@ -216,9 +213,7 @@ public Workflow getWorkflowJson(
216
213
* @param branch The branch of the repository
217
214
* @return The JSON representation of the workflow
218
215
*/
219
- @ GetMapping (
220
- value = "/workflows/*/*.git/{branch}/**" ,
221
- produces = MediaType .APPLICATION_JSON_VALUE )
216
+ @ GetMapping (value = "/workflows/*/*.git/{branch}/**" , produces = MediaType .APPLICATION_JSON_VALUE )
222
217
public Workflow getWorkflowJsonGeneric (
223
218
@ PathVariable ("branch" ) String branch , HttpServletRequest request ) {
224
219
// The wildcard end of the URL is the path
You can’t perform that action at this time.
0 commit comments