Skip to content

Commit

Permalink
Fix string mixup.
Browse files Browse the repository at this point in the history
  • Loading branch information
alesj committed Oct 12, 2012
1 parent f7024d2 commit 726e090
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,7 +34,7 @@ public class Environment {
public static final String PROJECT_VERSION = "1.2.0-SNAPSHOT";

public static Option toMavenBundle(String groupId, String artifactName) {
return mavenBundle(artifactName, groupId).version(PROJECT_VERSION);
return mavenBundle(groupId, artifactName).version(PROJECT_VERSION);
}

public static Option toMavenBundle(String groupId, String artifactName, String version) {
Expand Down

0 comments on commit 726e090

Please sign in to comment.