2011-12-07 12 views
2

私はMavenの3.0.3を使用しています。私は私のプロジェクトの検証フェーズでは、Tomcatマネージャアプリケーションを実行し、リモートのTomcat 6サーバーに私のWARファイルをデプロイしたいです。どうやってやるの?デイブMaven:WARファイルをリモートTomcatサーバーに配備するにはどうすればよいですか?

- 私は私のpom.xmlファイルにこれを追加したとき、私は
 <plugin> 
      <groupId>org.codehaus.cargo</groupId> 
      <artifactId>cargo-maven2-plugin</artifactId> 
      <configuration> 
       <container> 
        <containerId>tomcat${tomcat.major}x</containerId> 
        <zipUrlInstaller> 
         <url>http://archive.apache.org/dist/tomcat/tomcat-${tomcat.major}/v${tomcat.version}/bin/apache-tomcat-${tomcat.version}.tar.gz</url> 
         <downloadDir>${project.build.directory}/downloads</downloadDir> 
         <extractDir>${project.build.directory}/extracts</extractDir> 
        </zipUrlInstaller> 
        <output>${project.build.directory}/tomcat${tomcat.major}x.log</output> 
        <log>${project.build.directory}/cargo.log</log> 
       </container> 
       <configuration> 
        <home>${project.build.directory}/tomcat-${tomcat.version}/container</home> 
        <properties> 
         <cargo.logging>high</cargo.logging> 
         <cargo.servlet.port>${tomcat.servlet.port}</cargo.servlet.port> 
         <cargo.tomcat.ajp.port>${tomcat.ajb.port}</cargo.tomcat.ajp.port> 
        </properties> 
       </configuration> 
      </configuration> 
      <executions> 
       <execution> 
        <id>start-container</id> 
        <phase>pre-integration-test</phase> 
        <goals> 
         <goal>start</goal> 
         <goal>deploy</goal> 
        </goals> 
        <configuration> 
         <deployer> 
          <deployables> 
           <deployable> 
            <groupId>${project.groupId}</groupId> 
            <artifactId>${project.artifactId}</artifactId> 
            <type>war</type> 
            <pingURL>http://localhost:${tomcat.servlet.port}/${project.artifactId}</pingURL> 
            <pingTimeout>30000</pingTimeout> 
            <properties> 
             <context>${project.artifactId}</context> 
            </properties> 
           </deployable> 
          </deployables> 
         </deployer> 
        </configuration> 
       </execution> 
       <execution> 
        <id>stop-container</id> 
        <phase>post-integration-test</phase> 
        <goals> 
         <goal>stop</goal> 
        </goals> 
       </execution> 
       <!-- In the verify phase, deploy the app to a Tomcat instance. We 
         require that the properties "tomcat.manager.url", "tomcat.username", and 
         "tomcat.password" be defined. 
       --> 
       <execution> 
        <id>deploy-to-remote-tomcat</id> 
        <goals> 
         <goal>deploy</goal> 
        </goals> 
        <phase>verify</phase> 
        <configuration> 
         <container> 
          <containerId>tomcat${tomcat.major}x</containerId> 
          <type>remote</type> 
         </container> 
         <configuration> 
          <type>runtime</type> 
          <properties> 
           <cargo.tomcat.manager.url>${tomcat.manager.url}</cargo.tomcat.manager.url> 
           <cargo.remote.username>${tomcat.username}</cargo.remote.username> 
           <cargo.remote.password>${tomcat.password}</cargo.remote.password> 
          </properties> 
         </configuration> 
         <deployer> 
          <type>remote</type> 
          <deployables> 
           <deployable> 
            <groupId>${project.groupId}</groupId> 
            <artifactId>${project.artifactId}</artifactId> 
            <type>${project.packaging}</type> 
           </deployable> 
          </deployables> 
         </deployer> 
        </configuration> 
       </execution> 
      </executions> 
     </plugin> 

は、私が何か提案のための

Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.1.3:redeploy (deploy-to-remote-tomcat) on project myco-productplus-web: Execution deploy-to-remote-tomcat of goal org.codehaus.cargo:cargo-maven2-plugin:1.1.3:redeploy failed: Failed to create deployer with implementation class org.codehaus.cargo.container.tomcat.Tomcat6xRemoteDeployer for the parameters (container [id = [tomcat6x]], deployer type [remote]). argument type mismatch -> [Help 1] 

おかげで、エラーを取得...貨物プラグインは救いへの鍵だと思ったが、

+0

は、ご使用の構成に基づいて、あなたはダウンロードしてTomcatを開始し、さらにリモートのTomcat(検証)にあなたの戦争を展開しようとしているTomcatの(前の統合テスト)にあなたの戦争のアーカイブを展開しています。それには正当な理由がありますか? mvnを呼び出してpre-integration-test、integration-testを確認すると、verifyはこの場合に実行されているフェーズです。 – khmarbaise

答えて

2

these instructionsに従って、エラーメッセージに基づいて、<deployer>タグの下の<type>remote</type>要素を削除して、もう一度お試しください。

+0

は、私はあなたの提案ごとに「リモート」を削除しました。それは、エラーが離れて行くようでしたが、WARファイルが実行されている(例えば-Dtomcat.manager.url =)適切なプロパティで「MVNするクリーン検証」もかかわらず、Tomcatサーバーに配備されていませんでした成功しました。奇妙なのは、悪意のあるTomcatのマネージャーのURLやパスワードを意図的に入れても、私はまだビルドの成功を得ています。 – Dave

+0

ところで、私は先に行って、私の問題は、複数の構成であるようにそれはそうあるために受け入れていますが、他の考えを持っている場合は、間違いなく、コメントに反応します。ありがとう、 - – Dave

関連する問題