Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/ant/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Maven 2 有SVN专家吗?_Maven 2_Ant - Fatal编程技术网

Maven 2 有SVN专家吗?

Maven 2 有SVN专家吗?,maven-2,ant,Maven 2,Ant,有适合maven的东西吗?无需单击“更新”即可自动更新项目的功能?不支持。查看页面。始终有可能在maven中运行ant。 Ant在许多方面比maven强大得多,但maven在依赖关系管理和易于部署方面表现出色。因此,如果您需要maven中ant的强大功能,请使用maven antrun插件: 取自 : maven antrun插件 跑 肖恩 <build> <plugins> <plugin> <artifactId>maven-

有适合maven的东西吗?无需单击“更新”即可自动更新项目的功能?

不支持。查看页面。

始终有可能在maven中运行ant。 Ant在许多方面比maven强大得多,但maven在依赖关系管理和易于部署方面表现出色。因此,如果您需要maven中ant的强大功能,请使用maven antrun插件:

取自 :


maven antrun插件
跑

肖恩

<build>
<plugins>
  <plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
      <execution>
        <phase> <!-- a lifecycle phase --> </phase>
        <configuration>
          <tasks>

            <!--
              Place any Ant task here. You can add anything
              you can add between <target> and </target> in a
              build.xml.
            -->

          </tasks>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
</plugins>