代码之家  ›  专栏  ›  技术社区  ›  ant

有SVN的人吗?

  •  2
  • ant  · 技术社区  · 15 年前

    有什么适合马文的吗 http://subclipse.tigris.org/svnant.html ?不需要单击“更新”就可以自动更新项目?

    2 回复  |  直到 15 年前
        1
  •  3
  •   Pascal Thivent    15 年前

    这个 Maven SCM Plugin 确实支持 Subversion . 检查 Usage 页。

        2
  •  0
  •   Sean Patrick Floyd    15 年前

    总是有可能在马文内部运行蚂蚁。 ant在许多方面都比maven强大得多,但是maven在依赖性管理和易部署性方面表现出色。因此,如果您需要在maven中使用ant的功能,请使用maven antrun插件:

    取自 http://maven.apache.org/plugins/maven-antrun-plugin/usage.html :

    <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>
    

    肖恩

    推荐文章