All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightbend.lagom.sbt.core.Build Maven / Gradle / Ivy

There is a newer version: 1.3.11
Show newest version
/*
 * Copyright (C) 2016 Lightbend Inc. 
 */
package com.lightbend.lagom.sbt.core;

import java.util.Collections;
import java.util.ArrayList;
import java.util.List;


public class Build {

  public static final List sharedClasses;
  static {
    List list = new ArrayList();
    list.addAll(play.core.Build.sharedClasses);
    list.add(com.lightbend.lagom.sbt.server.ReloadableServer.class.getName());
    sharedClasses = Collections.unmodifiableList(list);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy