JAMES-2441 Tests were not played via maven This is due to a bad profile, that had not been removed.
Missing junit libs (!!!). The injection of UnionConfigurationProvider failed. (Previous commits fixed this) Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/ce6a5d66 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/ce6a5d66 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/ce6a5d66 Branch: refs/heads/master Commit: ce6a5d66056bda0061698999d2c470cbf840bec8 Parents: 6430724 Author: benwa <[email protected]> Authored: Wed Jun 27 11:15:40 2018 +0700 Committer: benwa <[email protected]> Committed: Tue Jul 3 09:47:14 2018 +0700 ---------------------------------------------------------------------- .../guice/cassandra-ldap-guice/pom.xml | 28 +++++++++++--------- 1 file changed, 15 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/ce6a5d66/server/container/guice/cassandra-ldap-guice/pom.xml ---------------------------------------------------------------------- diff --git a/server/container/guice/cassandra-ldap-guice/pom.xml b/server/container/guice/cassandra-ldap-guice/pom.xml index afa2b4a..b7f64a7 100644 --- a/server/container/guice/cassandra-ldap-guice/pom.xml +++ b/server/container/guice/cassandra-ldap-guice/pom.xml @@ -98,6 +98,11 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>james-server-testing</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>james-server-util-java8</artifactId> <type>test-jar</type> <scope>test</scope> @@ -118,6 +123,16 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <scope>test</scope> @@ -176,19 +191,6 @@ <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <excludes> - <exclude>**/suite/*.java</exclude> - <exclude>**/suite/**/*.java</exclude> - </excludes> - <includes> - <include>${cassandra.includes}</include> - </includes> - </configuration> - </plugin> </plugins> </build> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
