Unzip the contents into your project in eclipse. You should have some thing like /[project]
<buildSpec>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>auto,full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value><project>/.externalToolBuilders/project_build.launch</value>
</dictionary>
</arguments>
</buildCommand>
</buildSpec>
Now let's get to educating you about what's actually going on. In eclipse you can attach 1 or more builders to a project. They can execute at different times in Eclipse. You can set these builders up by right clicking the project and selecting the properties. The above xml block is what eclipse would put in your .project file so it knows there is a builder attached to the project. Okay now how the ANT file works. Below is a bulleted list of exceptions you may want to know about/change.
- This is setup specifically for JBoss but it is very easy to change.
- Properties are not variables once they are defined they will not be over written. So the order of the property declarations is important
- The ANT script does try to take advantage of an environment variable of JBOSS_HOME. If it is not defined it will use the definition of env.JBOSS_HOME in the .properties file.
- Some additional pathing for JBoss may need to be modified
- The default build task is Project and all projects in Kroger deploy to cfusion.war/projects/ you may want to change that behavior
No comments:
Post a Comment