Skip to content

Commit

Permalink
Some cleanup of pom and test files.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com>
  • Loading branch information
spericas committed Sep 23, 2020
1 parent 416ebe8 commit 41c5a2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
7 changes: 1 addition & 6 deletions tests/functional/mp-compression/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -47,10 +47,5 @@
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,12 @@
import io.helidon.microprofile.server.Server;

public final class Main {

private static Server server;

private Main() {
}

/**
* Run the MP application on multiple ports.
* @param args ignored
*/
public static void main(String[] args) {
server = Server.builder()
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ private void assertOk(Response response, String expectedMessage) {
assertThat(response.getStatus(), is(200));
assertThat(response.readEntity(String.class), is(expectedMessage));
}
}
}

0 comments on commit 41c5a2a

Please sign in to comment.