Commit 61f4d14b authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Minor changes

parent 6b39a132
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -143,17 +143,6 @@
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>dockerfile-maven-plugin</artifactId>
                <version>1.4.10</version>
                <configuration>
                    <repository>${project.artifactId}</repository>
                    <buildArgs>
                        <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
                    </buildArgs>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
+1 −1
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ public class JWTWebServiceController {
        // else: empty response (as defined by GMS standard)
    }

    @GetMapping(value = {"/ws/jwt/list/{group:.+}", "/ws/jwt/list", "/list"}, produces = MediaType.TEXT_PLAIN_VALUE)
    @GetMapping(value = {"/ws/jwt/list/{group:.+}", "/ws/jwt/list", "/list", "/list/{group:.+}"}, produces = MediaType.TEXT_PLAIN_VALUE)
    public void listGroups(@PathVariable("group") Optional<String> groupNames,
            @RequestParam(value = "recursive", defaultValue = "false") boolean recursive,
            Principal principal, HttpServletResponse response) throws IOException {