Package com.springsource.bundlor.blint.support

Examples of com.springsource.bundlor.blint.support.StandardManifestValidator


    }
    catch (Exception e) {
      throw new OsgiBuildException("Bundlor failed: error generating manifest", e, null);
    }

    return new StandardManifestValidator(DefaultManifestValidatorContributorsFactory.create()).validate(manifest);
  }
View Full Code Here


        List<PropertiesSource> properties = propertiesSourceFactory.create(configuration.getPropertiesPath(), configuration.getPropertySets(),
            configuration.getProperties());
        properties.add(osgiProfileFactory.create(configuration.getOsgiProfilePath(), configuration.getOsgiProfile()));
        this.manifestGenerator = new StandardManifestGenerator(createContributors(properties));

        this.manifestValidator = new StandardManifestValidator(DefaultManifestValidatorContributorsFactory.create());
    }
View Full Code Here

TOP

Related Classes of com.springsource.bundlor.blint.support.StandardManifestValidator

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.