I added a dependency to a Maven project (Scala based) but after recompiling it the new package can't be found. The new dependency looks as follows:
<dependency>
    <groupId>org.apache.any23</groupId>
    <artifactId>apache-any23</artifactId>
    <version>0.7.0-incubating</version>
</dependency>
Now when I
import org.apache.any23._
I get
Error: object any23 is not a member of package org.apache
Anybody an idea what the problem may be?