0

私はJPAを学んでいます.オブジェクトをダービーデータベースに永続化する最も単純な機能をテストするプロジェクトを作成しました.これは私のPOMです:

<?xml version="1.0" encoding="UTF-8"?>
  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLNSchema-instance" xsi:schemaLocation="http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com</groupId>
  <artifactId>java</artifactId>
  <version>2.0</version>
  <name>AJP</name>

  <dependencies>
      <dependency>
          <groupId>org.eclipse.persistence</groupId>
          <artifactId>javax.persistence</artifactId>
          <version>2.0.0</version>
      </dependency>    
      <dependency>
          <groupId>org.apache.derby</groupId>
          <artifactId>derbyclient</artifactId>
          <version>10.6.1.0</version>
      </dependency>
      <dependency>
          <groupId>org.apache.derby</groupId>
          <artifactId>derby</artifactId>
          <version>10.6.1.0</version>
          <scope>test</scope>
      </dependency>      
      <dependency>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.4</version>                
      </dependency>
  </dependencies>

  <build>
      <plugins>              
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.2.1</version>

            <executions>
              <execution>               
                <goals>                 
                  <goal>exec</goal>
                  <goal></goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <executable>maven</executable>
              <!-- optional -->
              <workingDirectory>/tmp</workingDirectory>
              <arguments>
                <argument>-X</argument>
                <argument>myproject:dist</argument>
              </arguments>
            </configuration>
            </plugin>
      </plugins>
  </build>

</project>

私はダービーを開始し、次のコマンドを使用します: mvn exec -Dexec.mainCLass="newmain" (newmain は私のメインクラスです)

次のような奇妙なエラーが表示されますcould not found goal ''plugin org.codehause.mojo:exec-maven-plugin:1.2.1 among avaiable goals exec

助けてくれてありがとう、みんな

4

1 に答える 1

2

exec プラグインを実行しようとする場合は、ライフサイクルではなくゴールを呼び出す必要があります。電話すれば

mvn exec  ...

これは存在しないライフサイクルです。実行するには、これを与える必要があります:

mvn exec:exec ...

これはmaven-exec-pluginの目標を表します。

于 2012-05-10T12:46:31.797 に答える