Examples of NexusCapabilitiesConfigurationXpp3Reader


Examples of org.sonatype.nexus.plugins.capabilities.internal.config.persistence.io.xpp3.NexusCapabilitiesConfigurationXpp3Reader

    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
Copyright © 2018 www.massapi.com. 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.