maven fix for running license verification tests
Original commit: elastic/x-pack-elasticsearch@650adfadc8
This commit is contained in:
parent
59d517f6b5
commit
8ffcc4f18f
2
pom.xml
2
pom.xml
|
@ -108,6 +108,8 @@
|
|||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.16</version>
|
||||
<configuration>
|
||||
<forkCount>1</forkCount>
|
||||
<reuseForks>false</reuseForks>
|
||||
<includes>
|
||||
<include>**/*Tests.java</include>
|
||||
</includes>
|
||||
|
|
|
@ -21,7 +21,6 @@ import java.io.IOException;
|
|||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@Ignore("Enable once maven is setup properly; now it throws invalid signature error for all the tests when the tests always pass in intellij")
|
||||
public class LicenseVerificationToolTests {
|
||||
|
||||
private static String pubKeyPath = null;
|
||||
|
|
|
@ -27,7 +27,6 @@ import static org.elasticsearch.license.core.ESLicenses.FeatureType;
|
|||
import static org.elasticsearch.license.core.LicenseUtils.readLicensesFromString;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
@Ignore("Enable once maven is setup properly; now it throws invalid signature error for all the tests when the tests always pass in intellij")
|
||||
public class LicenseVerificationTests {
|
||||
|
||||
private static String pubKeyPath = null;
|
||||
|
|
Loading…
Reference in New Issue