Skip to content

Commit

Permalink
Fix scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
leodagdag committed Oct 7, 2012
1 parent 9cd314c commit 7d7a125
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ object Play2MorphiaPluginBuild extends Build {

object BuildSettings {
val buildOrganization = "leodagdag"
val buildVersion = "0.0.7"
val buildScalaVersion = "2.9.2"
val buildVersion = "0.0.8"
val buildScalaVersion = "2.9.1"
val buildSbtVersion = "0.11.3"
val buildSettings = Defaults.defaultSettings ++ Seq (
organization := buildOrganization,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/leodagdag/play2morphia/MorphiaPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

public class MorphiaPlugin extends Plugin {

public static final String VERSION = "0.0.7";
public static final String VERSION = "0.0.8";

private static Mongo mongo = null;
private static Morphia morphia = null;
Expand Down
5 changes: 0 additions & 5 deletions src/test/java/leodagdag/play2morphia/test/ModelTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public void setUp() {
}

@Test
@Ignore
public void testCreate() {
System.out.println("testCreate");
running(fakeApplication(TestConfig.getInstance().config()), new Runnable() {
Expand All @@ -50,7 +49,6 @@ public void run() {
}

@Test
@Ignore
public void testUpdate() {
System.out.println("testUpdate");
running(fakeApplication(TestConfig.getInstance().config()), new Runnable() {
Expand All @@ -68,7 +66,6 @@ public void run() {
}

@Test
@Ignore
public void testDelete() {
System.out.println("testDelete");
running(fakeApplication(TestConfig.getInstance().config()), new Runnable() {
Expand All @@ -86,7 +83,6 @@ public void run() {
}

@Test
@Ignore
public void testFindWithOr() {
System.out.println("testFindWithOr");
running(fakeApplication(TestConfig.getInstance().config()), new Runnable() {
Expand Down Expand Up @@ -134,7 +130,6 @@ public void run() {
}

@Test
@Ignore
public void testInheritenceAndReference() {
System.out.println("testInheritenceAndReference");
running(fakeApplication(TestConfig.getInstance().config()), new Runnable() {
Expand Down

0 comments on commit 7d7a125

Please sign in to comment.