You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ide.html 3.3 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Language" content="en-us"/>
  18. <link rel="stylesheet" type="text/css" href="stylesheets/style.css"/>
  19. <title>IDE Integration</title>
  20. <base target="mainFrame"/>
  21. </head>
  22. <body>
  23. <h2><a href="toc.html" target="navFrame">Table of Contents</a></h2>
  24. <h3>IDE Integration</h3>
  25. <p>
  26. All the modern Java IDEs support Ant almost out of the box.
  27. </p>
  28. <ul>
  29. <li>
  30. <a href="http://antrunner.sourceforge.net/">
  31. AntRunner For JBuilder (unbundled)
  32. </a>
  33. </li>
  34. <li>
  35. <a href="Integration/jext-plugin.html">
  36. AntWork Plugin for the Jext Java Text Editor (unbundled)
  37. </a>
  38. </li>
  39. <li>
  40. <a href="http://jdee.sunsite.dk/">
  41. JDEE (Java Development Environment for Emacs)
  42. </a> has built-in text ANT integration: selection of target through text
  43. field, execution, hyperlink to compilation errors. Installation: built-in
  44. JDEE 2.2.8 or later. Configuration: through customize menu
  45. "Jde Build Function"
  46. </li>
  47. <li>
  48. <a href="http://www.intellij.com/idea/">
  49. IDEA
  50. </a> has built-in GUI ANT integration: GUI selection of targets, execution,
  51. hyperlink to compilation errors
  52. </li>
  53. <li>
  54. <a href="http://ant.netbeans.org/">
  55. NetBeans
  56. </a>
  57. NetBeans IDE uses Ant as the basis for its project system starting with the 4.0 release.
  58. </li>
  59. <li>
  60. <a href="http://jedit.org/">
  61. jEdit
  62. </a>
  63. jEdit is an open source java IDE with some great plugins for Java dev, a
  64. good XML editor and the Antfarm plugin to execute targets in a build
  65. file.
  66. </li>
  67. <li>
  68. <a href="http://eclipse.org/">
  69. Eclipse
  70. </a>
  71. Eclipse is IBM's counterpoint to NetBeans; an open source IDE with
  72. Java and Ant support.
  73. </li>
  74. <li>
  75. <a href="http://www.placidsystems.com/virtualant/">
  76. Virtual Ant</a> GUI allows you to work on a Virtual File System without dealing with the XML. Plugs into Eclipse, Netbeans &amp; Intellij.
  77. </li>
  78. <li>
  79. <a href="http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html">
  80. WebSphere Studio Application Developer
  81. </a>
  82. </li>
  83. <li>
  84. <a href="http://www.borland.com/jbuilder/pdf/jb9_feamatrix.pdf">
  85. JBuilder 9 Personal
  86. </a>
  87. JBuilder supports Ant with the following features. Add Ant nodes to
  88. projects and execute Ant targets from within JBuilder. Add custom Ant-based
  89. build tasks with custom Ant libraries to run Ant from within JBuilder.
  90. Rapid navigation from Ant build error messages to source files.
  91. Customize build menu and toolbar with custom build targets.
  92. </li>
  93. </ul>
  94. </body>
  95. </html>