Package com.crsn.maven.utils.osgirepo.content

Examples of com.crsn.maven.utils.osgirepo.content.JarFileContent


  private static void registerJarSourceContent( Map<String, Content> contentMap,
                                                MavenArtifact mavenArtefact,
                                                String directory )
  {
    JarFileContent jarContent = new JarFileContent( mavenArtefact.getContent() );
    String contentUrl = String.format( "%s/%s-%s-sources.jar",
                                       directory,
                                       mavenArtefact.getArtifactId(),
                                       mavenArtefact.getVersion() );
    registerContentAndItsDigests( jarContent, contentUrl, contentMap );
View Full Code Here


  private static void registerJarContent( Map<String, Content> contentMap,
                                          MavenArtifact mavenArtefact,
                                          String directory )
  {
    JarFileContent jarContent = new JarFileContent( mavenArtefact.getContent() );
    String contentUrl = String.format( "%s/%s-%s.jar",
                                       directory,
                                       mavenArtefact.getArtifactId(),
                                       mavenArtefact.getVersion() );
    registerContentAndItsDigests( jarContent, contentUrl, contentMap );
View Full Code Here

TOP

Related Classes of com.crsn.maven.utils.osgirepo.content.JarFileContent

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.