0

プロジェクトをビルドして.warファイルを作成するjenkinsciがあります。しかし、jenkinsにデプロイすることはできません。どうすればよいですか?

私のpom.xmlは次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>MavenWeb</groupId>
<artifactId>MavenWeb</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<description></description>
<distributionManagement>
<repository>
  <uniqueVersion>false</uniqueVersion>
  <id>e-ject.se</id>
  <name>e-ject.se</name>
  <url>http://e-ject.se/MavenWeb</url>
  <layout>default</layout>
</repository>
 </distributionManagement>
<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.0.1</version>
        </plugin>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat6-maven-plugin</artifactId>
            <version>2.0-beta-1</version>
                <configuration>
    <url>http://e-ject.se:8080/manager</url>
    <server>e-ject.se</server>
    <path>/MavenWeb</path>
</configuration>
        </plugin>
    </plugins>
</build>
<dependencies>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
    </dependency>
</dependencies>
</project>

そして、Webで見つけたsettings.xmlにすべての情報を追加しました。ユーザー名とパスワードを使用してe-ject.se:8080/manager/htmlにログインできます。

<server>
    <id>e-ject.se</id>
    <username>jonathan</username>
    <password>*****</password>
    <filePermissions>664</filePermissions>
    <directoryPermissions>775</directoryPermissions>
    <configuration></configuration>
</server>

これはjenkinsコンソールで取得します。

mavenExecutionResult exceptions not empty
message : Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy     (default-deploy) on project MavenWeb: 
Failed to deploy artifacts: Could not transfer artifact   MavenWeb:MavenWeb:war:0.0.1-20120412.150346-1 from/to e-ject.se 
(http://e-ject.se/MavenWeb): Failed to transfer file: http://e-ject.se/MavenWeb/MavenWeb/MavenWeb/0.0.1-SNAPSHOT/MavenWeb-0.0.1-20120412.150346-1.war. 
Return code is: 405

デプロイする代わりにtomcat:deployをjenkinsに追加するだけの場合

私は得る:

 mavenExecutionResult exceptions not empty
 message : Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:deploy (default-cli)     on project MavenWeb: Cannot invoke Tomcat manager
 cause : Cannot invoke Tomcat manager

以降:

Caused by: java.io.IOException: Server returned HTTP response code: 401 for URL:   http://localhost:8080/manager/deploy?path=%2FMavenWeb&war=

誰かが私がこれを機能させるのを手伝ってくれませんか?私はたくさんのガイドを読みましたが、私はそれを機能させることができません!

ジョナサンよろしく

4

1 に答える 1

0

複数のjenkinsがmavenにインストールされていて、以前のインストールで誤解を招くことに気づきました。最初からやり直して正しく実行する方がよい場合もあります。

于 2014-04-07T13:14:53.203 に答える