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

org.codehaus.fitnesseweb.fixture.SpringFitServer Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.codehaus.fitnesseweb.fixture;

import fit.FitServer;
import fit.FixtureLoader;
import org.springframework.context.support.StaticApplicationContext;

public class SpringFitServer {
    private SpringFitServer() {
    }

    public static void main(String argv[]) throws Exception {
        FixtureLoader.setInstance(new SpringFixtureLoader(new StaticApplicationContext()));
        FitServer fitServer = new FitServer();
        fitServer.run(argv);
        System.exit(fitServer.exitCode());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy