`
xzcgeorge
  • 浏览: 31453 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

maven deploy app to a container

阅读更多
以文件方式部署
 
Java代码 
<project>  
        [...]  
        <distributionManagement>  
            <repository>  
                <id>proficio-repository</id>  
                <name>Proficio Repository</name>  
                <url>file://${basedir}/target/deploy</url>  
            </repository>  
        </distributionManagement>  
        [...]  
    </project> 

<project>
        [...]
        <distributionManagement>
            <repository>
                <id>proficio-repository</id>
                <name>Proficio Repository</name>
                <url>file://${basedir}/target/deploy</url>
            </repository>
        </distributionManagement>
        [...]
    </project>

以SSH2方式部署
 
Java代码 
<project>  
        [...]  
        <distributionManagement>  
            <repository>  
                <id>proficio-repository</id>  
                <name>Proficio Repository</name>  
                <url>scp://sshserver.yourcompany.com/deploy</url>  
            </repository>  
            </distributionManagement>  
        [...]  
    </project> 

<project>
        [...]
        <distributionManagement>
            <repository>
                <id>proficio-repository</id>
                <name>Proficio Repository</name>
                <url>scp://sshserver.yourcompany.com/deploy</url>
            </repository>
            </distributionManagement>
        [...]
    </project>

以SFTP方式部署

Java代码 
<project>  
[...]  
<distributionManagement>  
     <repository>  
         <id>proficio-repository</id>  
         <name>Proficio Repository</name>  
         <url>sftp://ftpserver.yourcompany.com/deploy</url>  
     </repository>  
</distributionManagement>  
[...]  
</project> 

   <project>
    [...]
    <distributionManagement>
        <repository>
            <id>proficio-repository</id>
            <name>Proficio Repository</name>
            <url>sftp://ftpserver.yourcompany.com/deploy</url>
        </repository>
    </distributionManagement>
    [...]
    </project>
1021694352
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics