라벨이 배포인 게시물 표시

메이븐 ANTRUN- FTP전송

< plugin >    < groupId >org.apache.maven.plugins</ groupId >    < artifactId >maven-antrun-plugin</ artifactId >    < executions >      < execution >        < id >ftp</ id >        < phase >pre-site</ phase >        < configuration >          < tasks >            < echo >FTP Make Directory : "/${ftp.path}/${project.artifactId}"</ echo >            < ftp action = "mkdir" server = "localhost"                 remotedir = "/${ftp.path}/${project.artifactId}"           ...