Repository: james-project Updated Branches: refs/heads/master 74114e936 -> 1bc25f065
JAMES-2487 Remove deprecation warning WARNING: Found tags option '~@Ignore'. Support for '~@tag' will be removed from the next release of Cucumber-JVM. Please use 'not @tag' instead. Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/bc1e77be Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/bc1e77be Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/bc1e77be Branch: refs/heads/master Commit: bc1e77be32fbb0abec73c9786ca659aec933273a Parents: bf95a14 Author: Antoine Duprat <[email protected]> Authored: Tue Sep 11 10:33:46 2018 +0200 Committer: Antoine Duprat <[email protected]> Committed: Tue Sep 11 11:08:40 2018 +0200 ---------------------------------------------------------------------- .../jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java | 2 +- .../james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java | 2 +- .../james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java | 2 +- .../james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java | 2 +- .../james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java | 2 +- .../org/apache/james/jmap/memory/cucumber/MemorySharingTest.java | 2 +- .../james/jmap/memory/cucumber/MemoryUploadCucumberTest.java | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java index 814a511..f16a909 100644 --- a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java +++ b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraDownloadCucumberTest.java @@ -29,7 +29,7 @@ import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions(features = {"classpath:cucumber/DownloadEndpoint.feature", "classpath:cucumber/DownloadGet.feature", "classpath:cucumber/DownloadPost.feature"}, glue = {"org.apache.james.jmap.methods.integration", "org.apache.james.jmap.cassandra.cucumber"}, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class CassandraDownloadCucumberTest { http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java index ab6ec60..1026327 100644 --- a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java +++ b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMailboxSharingTest.java @@ -36,7 +36,7 @@ import cucumber.api.junit.Cucumber; "classpath:cucumber/sharing/MoveMailboxAndSharing.feature", "classpath:cucumber/sharing/RenamingMailboxAndSharing.feature" }, glue = { "org.apache.james.jmap.methods.integration", "org.apache.james.jmap.cassandra.cucumber" }, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class CassandraMailboxSharingTest { http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java index bbfaab9..87faa17 100644 --- a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java +++ b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraMessageSharingTest.java @@ -37,7 +37,7 @@ import cucumber.api.junit.Cucumber; "classpath:cucumber/sharing/SetFlagAndSharing.feature", "classpath:cucumber/sharing/CopyAndSharing.feature" }, glue = { "org.apache.james.jmap.methods.integration", "org.apache.james.jmap.cassandra.cucumber" }, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class CassandraMessageSharingTest { http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java index 64b764f..9d58324 100644 --- a/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java +++ b/server/protocols/jmap-integration-testing/cassandra-jmap-integration-testing/src/test/java/org/apache/james/jmap/cassandra/cucumber/CassandraUploadCucumberTest.java @@ -29,7 +29,7 @@ import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions(features = {"classpath:cucumber/UploadEndpoint.feature"}, glue = {"org.apache.james.jmap.methods.integration", "org.apache.james.jmap.cassandra.cucumber"}, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class CassandraUploadCucumberTest { http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java index 9fc8a9e..c072103 100644 --- a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryDownloadCucumberTest.java @@ -27,7 +27,7 @@ import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions(features = {"classpath:cucumber/DownloadEndpoint.feature", "classpath:cucumber/DownloadGet.feature", "classpath:cucumber/DownloadPost.feature"}, glue = {"org.apache.james.jmap.methods.integration", "org.apache.james.jmap.memory.cucumber"}, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class MemoryDownloadCucumberTest { } http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemorySharingTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemorySharingTest.java b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemorySharingTest.java index 3702e3f..1ab289e 100644 --- a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemorySharingTest.java +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemorySharingTest.java @@ -42,7 +42,7 @@ import cucumber.api.junit.Cucumber; "classpath:cucumber/sharing/RenamingMailboxAndSharing.feature", "classpath:cucumber/sharing/CopyAndSharing.feature" }, glue = { "org.apache.james.jmap.methods.integration", "org.apache.james.jmap.memory.cucumber" }, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class MemorySharingTest { } http://git-wip-us.apache.org/repos/asf/james-project/blob/bc1e77be/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryUploadCucumberTest.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryUploadCucumberTest.java b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryUploadCucumberTest.java index c1bea79..6d27a5d 100644 --- a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryUploadCucumberTest.java +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/cucumber/MemoryUploadCucumberTest.java @@ -27,7 +27,7 @@ import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions(features = {"classpath:cucumber/UploadEndpoint.feature"}, glue = {"org.apache.james.jmap.methods.integration", "org.apache.james.jmap.memory.cucumber"}, - tags = {"~@Ignore"}, + tags = {"not @Ignore"}, strict = true) public class MemoryUploadCucumberTest { } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
