Serialized Form
-
Package org.apache.maven.archetype.catalog
-
Class org.apache.maven.archetype.catalog.Archetype extends java.lang.Object implements Serializable
-
Serialized Fields
-
artifactId
java.lang.String artifactId
The artifactId of the archetype. -
description
java.lang.String description
The description of the archetype. -
goals
java.util.List<java.lang.String> goals
Field goals. -
groupId
java.lang.String groupId
The groupId of the archetype. -
properties
java.util.Properties properties
Field properties. -
repository
java.lang.String repository
Deprecated.The URL of the repository where to find the archetype. When omitted, the archetype is searched for in the repository where the catalog comes from. -
version
java.lang.String version
The version of the archetype.RELEASE
is a valid version.
-
-
-
Class org.apache.maven.archetype.catalog.ArchetypeCatalog extends java.lang.Object implements Serializable
-
Serialized Fields
-
archetypes
java.util.List<Archetype> archetypes
Field archetypes. -
modelEncoding
java.lang.String modelEncoding
Field modelEncoding.
-
-
-
-
Package org.apache.maven.archetype.downloader
-
Class org.apache.maven.archetype.downloader.DownloadException extends java.lang.Exception implements Serializable
-
Class org.apache.maven.archetype.downloader.DownloadNotFoundException extends java.lang.Exception implements Serializable
-
-
Package org.apache.maven.archetype.exception
-
Class org.apache.maven.archetype.exception.ArchetypeException extends java.lang.Exception implements Serializable
-
Class org.apache.maven.archetype.exception.ArchetypeGenerationConfigurationFailure extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.ArchetypeGenerationFailure extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.ArchetypeNotConfigured extends ArchetypeException implements Serializable
-
Serialized Fields
-
missingProperties
java.util.List<java.lang.String> missingProperties
-
-
-
Class org.apache.maven.archetype.exception.ArchetypeNotDefined extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.ArchetypeSelectionFailure extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.InvalidPackaging extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.OutputFileExists extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.PomFileExists extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.ProjectDirectoryExists extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.TemplateCreationException extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.UnknownArchetype extends ArchetypeException implements Serializable
-
Class org.apache.maven.archetype.exception.UnknownGroup extends ArchetypeException implements Serializable
-
-
Package org.apache.maven.archetype.metadata
-
Class org.apache.maven.archetype.metadata.AbstractArchetypeDescriptor extends java.lang.Object implements Serializable
-
Serialized Fields
-
fileSets
java.util.List<FileSet> fileSets
Field fileSets. -
modules
java.util.List<ModuleDescriptor> modules
Field modules.
-
-
-
Class org.apache.maven.archetype.metadata.ArchetypeDescriptor extends AbstractArchetypeDescriptor implements Serializable
-
Serialized Fields
-
modelEncoding
java.lang.String modelEncoding
Field modelEncoding. -
name
java.lang.String name
Name of the Archetype, that will be displayed to the user when choosing an archetype. -
partial
boolean partial
Is this archetype representing a full Maven project or only parts? -
requiredProperties
java.util.List<RequiredProperty> requiredProperties
Field requiredProperties.
-
-
-
Class org.apache.maven.archetype.metadata.FileSet extends java.lang.Object implements Serializable
-
Serialized Fields
-
directory
java.lang.String directory
The directory where the files will be searched for, which is also the directory where the project's files will be generated. -
encoding
java.lang.String encoding
Encoding to use when filtering content. -
excludes
java.util.List<java.lang.String> excludes
Field excludes. -
filtered
boolean filtered
Filesets can be filtered, which means the selected files will be used as Velocity templates. They can be non-filtered, which means the selected files will be copied without modification. -
includes
java.util.List<java.lang.String> includes
Field includes. -
packaged
boolean packaged
Filesets can be packaged, which means the selected files will be generated/copied in a directory structure that is prepended by the package property. They can be non-packaged, which means that the selected files will be generated/copied without that prepend.
-
-
-
Class org.apache.maven.archetype.metadata.ModuleDescriptor extends AbstractArchetypeDescriptor implements Serializable
-
Serialized Fields
-
dir
java.lang.String dir
The module's directory. -
id
java.lang.String id
The module's artifactId. -
name
java.lang.String name
The module's name.
-
-
-
Class org.apache.maven.archetype.metadata.RequiredProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
defaultValue
java.lang.String defaultValue
Default value of the property. -
key
java.lang.String key
Key value of the property. -
validationRegex
java.lang.String validationRegex
A regular expression used to validate the property.
-
-
-
-
Package org.apache.maven.archetype.model
-
Class org.apache.maven.archetype.model.ArchetypeModel extends java.lang.Object implements Serializable
-
Serialized Fields
-
allowPartial
boolean allowPartial
Setting this option totrue
makes it possible to run thearchetype:create
even on existing projects. -
id
java.lang.String id
The value should be the same as the artifactId in the archetypepom.xml
. -
modelEncoding
java.lang.String modelEncoding
Field modelEncoding. -
resources
java.util.List<Resource> resources
Field resources. -
siteResources
java.util.List<Resource> siteResources
Field siteResources. -
sources
java.util.List<Source> sources
Field sources. -
testResources
java.util.List<Resource> testResources
Field testResources. -
testSources
java.util.List<Source> testSources
Field testSources.
-
-
-
Class org.apache.maven.archetype.model.Resource extends java.lang.Object implements Serializable
-
Serialized Fields
-
encoding
java.lang.String encoding
The encoding to be used when reading/writing this file. Platform encoding is used by default, or ISO-8859-1 when filename ends in.properties
-
file
java.lang.String file
The resource file. -
filtered
boolean filtered
A resource can be filtered, which means the file will be used as Velocity template. It can be non-filtered, which means the file will be copied without modification.
-
-
-
Class org.apache.maven.archetype.model.Source extends java.lang.Object implements Serializable
-
Serialized Fields
-
encoding
java.lang.String encoding
The encoding to be used when reading/writing this file. Platform encoding is used by default, or ISO-8859-1 when filename ends in.properties
-
file
java.lang.String file
The source file.
-
-
-
-
Package org.apache.maven.archetype.old
-
Class org.apache.maven.archetype.old.ArchetypeDescriptorException extends ArchetypeGenerationFailure implements Serializable
-
Class org.apache.maven.archetype.old.ArchetypeNotFoundException extends ArchetypeGenerationFailure implements Serializable
-
Class org.apache.maven.archetype.old.ArchetypeTemplateProcessingException extends ArchetypeGenerationFailure implements Serializable
-
-
Package org.apache.maven.archetype.source
-
Class org.apache.maven.archetype.source.ArchetypeDataSourceException extends java.lang.Exception implements Serializable
-