web-dev-qa-db-ja.com

maven pom.xmlでプラグインバージョンを正しく定義するにはどうすればよいですか?

私はWebアプリを作成しようとして苦労しており、オフィスの慣例により、Maven/Jetty/Eclipseセットアップを使用してJava Webアプリを作成しようとしています。

コマンドウィンドウで、mvn jetty:runと入力して、コンパイルして実行しようとしています。これにより、現在、(非常に可能性が高い)関連するビルドエラーが発生する前に、多くの警告が表示されます。ビルドが失敗した理由ではない場合でも、先に進む前にこれらのエラーを解決したいと思います。

警告メッセージは、プラグインのバージョンの宣言がないことを示しているようで、ヘルプを検索しようとしたところ、同じことが示唆されました。ただし、バージョンが定義されています。私のもう一つの懸念は、エラーが警告を示していることです。 13行目にあります。これは空の行です。更新の問題、またはpom.xml-filesの重複があるのではないかと心配していますが、別の注意として、コンパイラーは私が知っているファイルの編集に反応します。

私のエラーメッセージは:

H:\projects\releaseplan>mvn jetty:run
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for releaseplan:releaseplan-model:jar:5
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-compiler-plugin is missing. @ releaseplan:releaseplan:5, H:\projects\releaseplan\pom.xml, line 13, column 15
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-source-plugin is missing. @ releaseplan:releaseplan:5, H:\projects\releaseplan\pom.xml, line 22, column 15
[WARNING]
[WARNING] Some problems were encountered while building the effective model for releaseplan:releaseplan-server:war:5
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-compiler-plugin is missing. @ releaseplan:releaseplan:5, H:\projects\releaseplan\pom.xml, line 13, column 15
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-source-plugin is missing. @ releaseplan:releaseplan:5, H:\projects\releaseplan\pom.xml, line 22, column 15
[WARNING]
[WARNING] Some problems were encountered while building the effective model for releaseplan:releaseplan:pom:5
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-compiler-plugin is missing. @ line 13, column 15
[WARNING] 'build.plugins.plugin.version' for org.Apache.maven.plugins:maven-source-plugin is missing. @ line 22, column 15

そして、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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>releaseplan</groupId>
<artifactId>releaseplan</artifactId>
<version>1</version>
<packaging>pom</packaging>
<name>releaseplan</name>

<build>

    <plugins>

        <!--<plugin> <groupId>ro.isdc.wro4j</groupId> <artifactId>wro4j-maven-plugin</artifactId> 
            <version>${wro4j.version}</version> <executions> <execution> <goals> <goal>jshint</goal> 
            </goals> </execution> </executions> <configuration> <options>devel,evil,noarg</options> 
            </configuration> </plugin> -->
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
        <plugin>
            <!-- Jetty Version: 8.x Home: Eclipse, Codehaus Java Version: 1.6 Protocols: 
                HTTP/1.1 RFC2616, WebSocket, SPDY Servlet Version: 3.0 JSP Version: 2.1 http://wiki.Eclipse.org/Jetty -->
            <artifactId>jetty-maven-plugin</artifactId>
            <version>8.1.13.v20130916</version>
            <configuration>
                <webAppConfig>
                    <contextPath>/</contextPath>
                </webAppConfig>
                <scanIntervalSeconds>1</scanIntervalSeconds>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <phase>initialize</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <tasks>
                            <echo>********************************************</echo>
                            <echo>***** This project REQUIRES Maven 3.0+ *****</echo>
                            <echo>********************************************</echo>
                            <echo>mvn jetty:run - Running as un-assembled webapp</echo>
                            <echo>mvn jetty:run-war - Running as assembled webapp</echo>
                        </tasks>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
<dependencyManagement>
    <dependencies>
        <!--  <dependency> <groupId>com.dyuproject.protostuff</groupId> <artifactId>protostuff-core</artifactId> 
            <version>${protostuff.version}</version> </dependency> <dependency> <groupId>com.dyuproject.protostuff</groupId> 
            <artifactId>protostuff-json</artifactId> <version>${protostuff.version}</version> 
            </dependency> -->
        <dependency>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>servlet-api</artifactId>
            <version>${servlet.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-core-asl</artifactId>
            <version>${jackson.version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>

<modules>
    <module>model</module>
    <module>server</module>
</modules>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <compiler.source>1.5</compiler.source>
    <compiler.target>1.5</compiler.target>

    <junit.version>4.4</junit.version>
    <servlet.version>2.5-20081211</servlet.version>
    <jetty.version>6.1.24</jetty.version>
    <protobuf.version>2.3.0</protobuf.version>
    <jackson.version>1.7.9</jackson.version>
    <protostuff.version>1.0.2-SNAPSHOT</protostuff.version>
</properties>

 <repositories>
        <repository>
            <id>Java</id>
            <name>Java</name>
            <url>http://download.Java.net/maven/2/</url>
        </repository>
        <repository>
            <id>repo1</id>
            <name>repo1</name>
            <url>http://repo1.maven.org/maven2</url>
        </repository>
    </repositories>



<pluginRepositories>
    <pluginRepository>
      <id>central</id>
      <name>Maven Plugin Repository</name>
      <url>http://repo1.maven.org/maven2</url>
      <layout>default</layout>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <releases>
        <updatePolicy>never</updatePolicy>
      </releases>
    </pluginRepository>
  </pluginRepositories>
</project>
11
jumps4fun

おそらく、ここで説明するようにすべてのプラグインのバージョンを知る必要があるMaven 3を使用します: https://cwiki.Apache.org/confluence/display/MAVEN/Maven+3.x+Compatibility+Notes#Maven3 .xCompatibilityNotes-AutomaticPluginVersionResolution

親pom.xmlのpluginManagementセクションにすべてのプラグインバージョンを追加することは正しい方法です。 (エンタープライズでの)最良の方法は、エンタープライズの親pom.xmlファイルをすべてのプロジェクトで使用することです。

実際、親pom.xmlpropertiesセクションに次の行を追加します。

<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>

次の行を親のpom.xmlbuild> pluginManagementセクションに追加します。

<plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>${maven-compiler-plugin.version}</version>
</plugin>

それが役に立てば幸い...

15
jurevert