|
@@ -23,7 +23,6 @@ import org.apache.commons.io.FileUtils;
|
|
|
import org.elasticsearch.gradle.test.GradleIntegrationTestCase;
|
|
|
import org.gradle.testkit.runner.GradleRunner;
|
|
|
import org.junit.BeforeClass;
|
|
|
-import org.junit.Ignore;
|
|
|
import org.junit.Rule;
|
|
|
import org.junit.rules.TemporaryFolder;
|
|
|
|
|
@@ -39,7 +38,6 @@ import java.util.List;
|
|
|
import java.util.Objects;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
-@Ignore // https://github.com/elastic/elasticsearch/issues/38784
|
|
|
public class BuildExamplePluginsIT extends GradleIntegrationTestCase {
|
|
|
|
|
|
private static final List<File> EXAMPLE_PLUGINS = Collections.unmodifiableList(
|
|
@@ -78,11 +76,6 @@ public class BuildExamplePluginsIT extends GradleIntegrationTestCase {
|
|
|
|
|
|
public void testCurrentExamplePlugin() throws IOException {
|
|
|
FileUtils.copyDirectory(examplePlugin, tmpDir.getRoot());
|
|
|
- // just get rid of deprecation warnings
|
|
|
- Files.write(
|
|
|
- getTempPath("settings.gradle"),
|
|
|
- "enableFeaturePreview('STABLE_PUBLISHING')\n".getBytes(StandardCharsets.UTF_8)
|
|
|
- );
|
|
|
|
|
|
adaptBuildScriptForTest();
|
|
|
|