Artifact Source Definition Schema

See artifact-source.xsd for the schema definition.

The following example describes the definition of the custom Artifact Source type:

	<?xml version="1.0" encoding="UTF-8"?>
	<ArtifactSourceType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd-schemes/artifactsourcetype.xsd">		
		<Name>Fileshare</Name>
		<Properties>
			<Group name="File" displayName="File">
				<Property name="BasePath" type="SingleLineText" mode="EDITABLE" displayName="Base Path">
				</Property>
				<Property name="Username" type="SingleLineText" mode="EDITABLE" displayName="Username">
				</Property>
				<Property name="Password" type="Protected" mode="EDITABLE" displayName="Password">
				</Property>
			</Group>
		</Properties>
		<Description>Artifact Source Type for local and remote file</Description>
		<Artifact> 
			<Properties>
				<Group name="File" displayName="File">
					<Property name="RelativePath" type="SingleLineText" mode="EDITABLE" displayName="Relative Path">
					</Property>
				</Group>
			</Properties>
		</ArtifactInstance>
	</ArtifactSourceType>