8

我注意到每次在 MAVEN 中运行 exec:java 命令时都会收到此警告。

[警告] 警告:killAfter 现在已被弃用。你需要它吗 ?请对 MEXEC-6 发表评论。

我怎样才能摆脱它?我一直在寻找它,但没有任何线索。

POM.xml:

<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>foodfinder</groupId>
  <artifactId>food-client</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Food Finder client</name>
  <description>The client application for the Food Finder</description>
  <dependencies>
    <dependency>
        <groupId>org.json</groupId>
        <artifactId>json</artifactId>
        <version>20140107</version>
    </dependency>
    <dependency>
        <groupId>org.apache.uima</groupId>
        <artifactId>uimaj-tools</artifactId>
        <version>2.6.0</version>
    </dependency>
    <dependency>
        <groupId>commons-validator</groupId>
        <artifactId>commons-validator</artifactId>
        <version>1.4.0</version>
    </dependency>
    <dependency>
        <groupId>com.razican.utils</groupId>
        <artifactId>java-utils</artifactId>
        <version>0.1.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
        <version>3.3.2</version>
    </dependency>
  </dependencies>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/Razican/FoodClient/issues</url>
  </issueManagement>
  <ciManagement>
    <system>Travis-CI</system>
    <url>https://travis-ci.org/Razican/FoodClient</url>
  </ciManagement>
  <repositories>
    <repository>
        <id>Java-Utils</id>
        <url>https://raw.github.com/Razican/Java-Utils/mvn-repo/</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
  </repositories>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <archive>
            <manifest>
              <mainClass>foodfinder.client.Launcher</mainClass>
            </manifest>
          </archive>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.3.2</version>
          <executions>
            <execution>
              <goals>
                <goal>java</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <mainClass>foodfinder.client.Launcher</mainClass>
          </configuration>
      </plugin>
    </plugins>
  </build>
</project>
4

3 回答 3

10

更新到 exec-maven-plugin 的 1.4.0 版。警告不再出现。

于 2015-04-08T17:55:57.240 回答
9

要消除此警告,您需要修改 pom.xml

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.3.2</version>
      <executions>
        <execution>
          <goals>
            <goal>java</goal>
          </goals>
        </execution>
      </executions>
      <configuration>
        <!--
          to get rid of the warning: [WARNING] Warning: killAfter is now deprecated. Do you need it ? Please comment on MEXEC-6.
          see: method execute() in https://github.com/ispringer/exec-maven-plugin/blob/master/src/main/java/org/codehaus/mojo/exec/ExecJavaMojo.java
        -->
        <killAfter>-1</killAfter>
        <mainClass>foodfinder.client.Launcher</mainClass>
      </configuration>
  </plugin>

编辑此答案不再适用于exec-maven-plugin.

对于不赞成投票的人,请查看时间表。

Jul 2014 - release of plugin version 1.3.2
Nov 2014 - posting this answer
Mar 2015 - release of plugin version 1.4.0 
于 2014-11-17T07:28:23.023 回答
3

选一个:

1) 通过添加以下内容更改您的 pom 中的 exec-maven-plugin 配置:

<killAfter>-1</killAfter>

2)或添加命令行参数:

-Dexec.killAfter=-1
于 2015-03-26T02:41:49.480 回答