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
6 changes: 3 additions & 3 deletions config/.harness/java_http_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ pipeline:
description: run unit tests
name: runTestsWithIntelligence
identifier: runTestsWithIntelligence
timeout: 20m
timeout: 50m
spec:
connectorRef: account.nofar_dockerhub
image: maven:3.5.2-jdk-8-alpine
args: test
buildTool: Maven
language: Java
buildTool: Maven
args: test
packages: io.harness.
runOnlySelectedTests: true
postCommand: mvn package -DskipTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public boolean process(HttpRequest request, HttpResponse response) {

private void appendLink(String fileName, String uri, PrintWriter writer) {
// writer.append(String.format("<li>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9230;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9220;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
// writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:yellow;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));

}
Expand Down