congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ArtifactId
Code IndexAdd Tabnine to your IDE (free)

How to use
ArtifactId
in
de.smartics.properties.resource.domain

Best Java code snippets using de.smartics.properties.resource.domain.ArtifactId (Showing top 3 results out of 315)

origin: de.smartics.properties/smartics-properties-resource-filesystem

private ArtifactId createArtifactId(final Manifest manifest)
 throws IllegalArgumentException
{
 final Attributes attributes = manifest.getMainAttributes();
 final String groupId =
   attributes.getValue(Attributes.Name.IMPLEMENTATION_VENDOR_ID);
 final String artifactId =
   attributes.getValue(Attributes.Name.IMPLEMENTATION_TITLE);
 final String version =
   attributes.getValue(Attributes.Name.IMPLEMENTATION_VERSION);
 final ArtifactId id =
   ArtifactId
     .create(groupId, artifactId, version, archiveType, classifier);
 return id;
}
origin: de.smartics.properties/smartics-properties-resource-maven

private static Artifact createArtifact(final ArtifactId artifactId)
{
 final DefaultArtifact artifact =
   new DefaultArtifact(artifactId.getGroupId(), artifactId.getName(),
     artifactId.getClassifier(), artifactId.getArchiveType(),
     artifactId.getVersion());
 return artifact;
}
origin: de.smartics.properties/smartics-properties-config

artifactRef.getId().toString() + ':' + url.toExternalForm();
de.smartics.properties.resource.domainArtifactId

Most used methods

  • create
  • getArchiveType
  • getClassifier
  • getGroupId
  • getName
  • getVersion
  • toString

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now