Package org.sonatype.nexus.plugins.capabilities.internal.config.persistence

Examples of org.sonatype.nexus.plugins.capabilities.internal.config.persistence.Configuration


    return backupFile;
  }

  private void convert(final File file) throws Exception {
    try (Reader reader = new BufferedReader(new FileReader(file))) {
      Configuration configuration = new NexusCapabilitiesConfigurationXpp3Reader().read(reader);
      List<CCapability> capabilities = configuration.getCapabilities();

      if (capabilities == null) {
        log.info("No capabilities defined to convert; aborting");
        return;
      }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.plugins.capabilities.internal.config.persistence.Configuration

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.