This commit is contained in:
Jan Bartel 2017-04-27 10:12:39 +02:00
parent 17caad898b
commit cbc3e7cc18
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<name>Jetty :: GCloud</name>
<properties>
<gcloud.version>0.10.0-beta</gcloud.version>
<gcloud.version>1.0.0</gcloud.version>
</properties>
<modules>

View File

@ -29,7 +29,7 @@ import java.util.Set;
import org.eclipse.jetty.server.session.SessionDataStore;
import org.eclipse.jetty.server.session.SessionHandler;
import org.joda.time.Duration;
import org.threeten.bp.Duration;
import com.google.cloud.datastore.Datastore;
import com.google.cloud.datastore.DatastoreOptions;
@ -102,7 +102,7 @@ public class GCloudSessionTestSupport
public void tearDown()
throws Exception
{
_helper.stop(Duration.standardMinutes(1)); //wait up to 1min for shutdown
_helper.stop(Duration.ofMinutes(1)); //wait up to 1min for shutdown
}