Skip to content

Commit

Permalink
CMRTest: use ":" as group/artifact separators for Maven imports ceylo…
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Oct 28, 2013
1 parent 08ed8f2 commit f2407e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ public void testMdlAetherDependencyCustom() throws IOException{
@Test
public void testMdlAetherMissingDependencies() throws IOException{
CompilerError[] expectedErrors = new CompilerError[]{
new CompilerError(5, "Error while loading the org.apache.camel.camel-jetty/2.9.4 module:\n"
new CompilerError(5, "Error while loading the org.apache.camel:camel-jetty/2.9.4 module:\n"
+" Error while resolving extended type of org.apache.camel.component.jetty::JettyHttpComponent:\n"
+" Failed to find declaration for org.apache.camel.component.http.HttpComponent"),
new CompilerError(10, "argument must be assignable to parameter arg1 of addComponent in DefaultCamelContext: JettyHttpComponent is not assignable to Component?"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module com.redhat.ceylon.compiler.java.test.cmr.modules.bug1100 "1" {
import java.base "7";
import "commons-codec.commons-codec" "1.4";
import "org.apache.camel.camel-core" "2.9.4";
import "org.apache.camel.camel-jetty" "2.9.4";
import "commons-codec:commons-codec" "1.4";
import "org.apache.camel:camel-core" "2.9.4";
import "org.apache.camel:camel-jetty" "2.9.4";
}

0 comments on commit f2407e6

Please sign in to comment.