This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ResourceOwnerAuthenticationProvider implements AuthenticationProvider { | |
private String apiEndpoint; | |
private String clientId; | |
private String accessTokenUri; | |
private String clientSecret; | |
private List<String> scope; | |
@Override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
buildDir="/build" | |
buildSize="2G" | |
buildEntry="tmpfs $buildDir tmpfs noatime,nodev,nosuid,size=$buildSize 0 0" | |
tcParent="/opt" | |
tcHome="$tcParent/TeamCity" |