Package org.sonatype.nexus.bootstrap

Examples of org.sonatype.nexus.bootstrap.LockFile


      File workDir = new File(properties.get("nexus-work")).getCanonicalFile();
      mkdir(workDir.toPath());

      // lock the work directory
      lockFile = new LockFile(new File(workDir, "nexus.lock"));
      if (!lockFile.lock()) {
        throw new IllegalStateException("Nexus work directory already in use: " + workDir);
      }

      // are we already running in OSGi or should we embed OSGi?
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.bootstrap.LockFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.