Tabnine Logo
ArchivaProjectModel.getPackaging
Code IndexAdd Tabnine to your IDE (free)

How to use
getPackaging
method
in
org.apache.maven.archiva.model.ArchivaProjectModel

Best Java code snippets using org.apache.maven.archiva.model.ArchivaProjectModel.getPackaging (Showing top 3 results out of 315)

origin: org.apache.archiva/archiva-database-consumers

private void appendModel( StringBuffer buf, ArchivaProjectModel model )
{
  buf.append( "groupId:" ).append( model.getGroupId() );
  buf.append( "|artifactId:" ).append( model.getArtifactId() );
  buf.append( "|version:" ).append( model.getVersion() );
  buf.append( "|packaging:" ).append( model.getPackaging() );
}
origin: org.apache.maven.archiva/archiva-database-consumers

private void appendModel( StringBuffer buf, ArchivaProjectModel model )
{
  buf.append( "groupId:" ).append( model.getGroupId() );
  buf.append( "|artifactId:" ).append( model.getArtifactId() );
  buf.append( "|version:" ).append( model.getVersion() );
  buf.append( "|packaging:" ).append( model.getPackaging() );
}
origin: org.apache.maven.archiva/archiva-model

public static ArchivaProjectModel clone( ArchivaProjectModel model )
{
  if ( model == null )
  {
    return null;
  }
  ArchivaProjectModel cloned = new ArchivaProjectModel();
  cloned.setGroupId( model.getGroupId() );
  cloned.setArtifactId( model.getArtifactId() );
  cloned.setVersion( model.getVersion() );
  cloned.setParentProject( clone( model.getParentProject() ) );
  cloned.setName( model.getName() );
  cloned.setDescription( model.getDescription() );
  cloned.setUrl( model.getUrl() );
  cloned.setPackaging( model.getPackaging() );
  cloned.setOrigin( model.getOrigin() );
  cloned.setMailingLists( cloneMailingLists( model.getMailingLists() ) );
  cloned.setCiManagement( clone( model.getCiManagement() ) );
  cloned.setIndividuals( cloneIndividuals( model.getIndividuals() ) );
  cloned.setIssueManagement( clone( model.getIssueManagement() ) );
  cloned.setLicenses( cloneLicenses( model.getLicenses() ) );
  cloned.setOrganization( clone( model.getOrganization() ) );
  cloned.setScm( clone( model.getScm() ) );
  cloned.setRepositories( cloneRepositories( model.getRepositories() ) );
  cloned.setDependencies( cloneDependencies( model.getDependencies() ) );
  cloned.setPlugins( clonePlugins( model.getPlugins() ) );
  cloned.setReports( cloneReports( model.getReports() ) );
  cloned.setDependencyManagement( cloneDependencies( model.getDependencyManagement() ) );
  return cloned;
}
org.apache.maven.archiva.modelArchivaProjectModelgetPackaging

Javadoc

Get The declared packaging for this project model.

Popular methods of ArchivaProjectModel

  • getArtifactId
    Get The Artifact ID of the repository content.
  • getGroupId
    Get The Group ID of the repository content.
  • getVersion
    Get The version of the repository content.
  • setVersion
    Set The version of the repository content.
  • <init>
  • getDependencies
    Method getDependencies
  • getDependencyManagement
    Method getDependencyManagement
  • setArtifactId
    Set The Artifact ID of the repository content.
  • setGroupId
    Set The Group ID of the repository content.
  • setOrigin
    Set The Origin of this Model. (Filesystem, Proxy, or Deploy)
  • setPackaging
    Set The declared packaging for this project model.
  • getBuildExtensions
    Method getBuildExtensions
  • setPackaging,
  • getBuildExtensions,
  • getCiManagement,
  • getDescription,
  • getIndividuals,
  • getIssueManagement,
  • getLicenses,
  • getMailingLists,
  • getName

Popular in Java

  • Start an intent from android
  • onRequestPermissionsResult (Fragment)
  • setScale (BigDecimal)
  • getApplicationContext (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top Sublime Text plugins
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