1

マシン 192.168.1.3 に weblogic 12c があります。maven プラグインを使用して、マシン 192.168.1.2 から ear をデプロイしたい:

<groupId>com.oracle.weblogic</groupId>
<artifactId>wls-maven-plugin</artifactId>
<version>12.1.1.0</version>

プロジェクトで作成した最初のフェーズでは:

mvn wls:install

プラグイン構成は次のようになります。

<configuration>
    <adminurl>t3://192.168.1.3:7001</adminurl>
    <user>weblogic</user>
    <password>welcome1</password>
    <debug>true</debug>
    <name>test-ear-dev01</name>                     
    <remote>true</remote>
    <upload>true</upload>
    <advanced>true</advanced>
    <failOnError>true</failOnError>
    <artifactLocation>c:\Users\bartek\Downloads\wls1211_dev.zip</artifactLocation>
</configuration>

次は私が作る

mvn wls:deploy

次のエラーが表示されます

[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Invalid file. Please provide an existing fully qualified path of the file.
[DEBUG] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Invalid file. Please provide an existing fully qualified path of the file.
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719)
        ...
        ...
        ...
Caused by: org.apache.maven.plugin.MojoExecutionException: Invalid file. Please provide an existing fully qualified path of the file.
        at weblogic.tools.maven.plugins.deploy.DeployerMojo.handleDeployerException(DeployerMojo.java:459)
        ...
Caused by: org.apache.maven.plugin.MojoExecutionException: Invalid file. Please provide an existing fully qualified path of the file.
        at weblogic.tools.maven.plugins.deploy.DeployerMojo.getSourceParameter(DeployerMojo.java:434)
        ...

ear をリモートサーバーにデプロイするとき、私が間違っていることを教えてください

4

1 に答える 1

2

install表示する構成は、プラグインを目的として WebLogicをインストールするために使用したものと同じように見えます。ドキュメントによると<artifactLocation>ではなく、その目標の構成要素です。deploy

deploy目標として、earファイルの名前を含むに置き換えます<artifactLocation><source>

于 2013-03-10T20:47:30.240 に答える