Как сделать deploy проекта в WildFly через Maven plugin

<plugin>
    <groupId>org.wildfly.plugins</groupId>
    <artifactId>wildfly-maven-plugin</artifactId>
    <version>1.2.2.Final</version>
    <configuration>
        <hostname>localhost</hostname>
        <port>8080</port>
        <username>root</username>
        <password>root</password>
    </configuration>
</plugin>

получаю ошибку

Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) 
on project CarFactory:
Deployment failed: repository element was not specified 
in the POM inside distributionManagement element or in 
-DaltDeploymentRepository=id::layout::url parameter -> [Help 1]

как я понял нужно добавить блок

<distributionManagement>
    <repository>
        <uniqueVersion>***</uniqueVersion>
        <id>***</id>
        <name>***</name>
        <url>***</url>
        <layout>***</layout>
    </repository>
</distributionManagement>

как его заполнить, в частности url?
указываю директорию на своем пк и получаю ошибку

Failed to deploy artifacts/metadata: 
Cannot access С:\*** with type default using the available 
connector factories: BasicRepositoryConnectorFactory

Ответы (0 шт):