ports/java/jboss5/files/patch-buildmagic.ent
Xin LI 789e9ecac7 New port: jboss5
JBoss AS 5 GA will be Java EE 5 certified and will include the following core
technologies.

    * JBoss Microcontainer - POJO based microcontainer removing the dependency
      on JMX
    * EJB 3.0 - Fully certified as part of the Java EE 5 compliant JBoss AS 5
    * Hibernate 3.2 - JPA certified
    * JBoss Messaging 1.2 - the next generation messaging platform from JBoss
      with HA features.
    * JBoss WebServices 2.0 - new custom built JAX-WS compliant WebServices
      stack.
    * JBoss Seam 1.1 - a powerful new application framework to build next
      generation Web 2.0 applications by unifying and integrating popular
      service oriented architecture (SOA) technologies

Submitted by:	Nemo Liu <nemoliu gmail com>
PR:		ports/110163
Repocopy by:	marcus
2007-03-28 05:47:17 +00:00

37 lines
1.2 KiB
Text

--- ./tools/etc/buildmagic/buildmagic.ent.orig Mon Nov 20 07:45:55 2006
+++ ./tools/etc/buildmagic/buildmagic.ent Sun Mar 25 21:28:14 2007
@@ -7,34 +7,6 @@
<!-- Initialize the build system. -->
<target name="_buildmagic:init" unless="init.disable">
- <!-- Make sure we have the right version of Ant -->
- <property name="buildmagic.ant15.baseversion" value="1.5"/>
- <property name="buildmagic.ant16.baseversion" value="1.6"/>
-
- <!--
- | Add new conditions for other supported Ant versions when they
- | become avaialble.
- -->
-
- <condition property="buildmagic.ant.compatible">
- <or>
- <contains string="${ant.version}"
- substring="Ant version ${buildmagic.ant15.baseversion}"/>
- <contains string="${ant.version}"
- substring="Ant version ${buildmagic.ant16.baseversion}"/>
- </or>
- </condition>
-
- <fail unless="buildmagic.ant.compatible">
-
- Unsupported Ant version:
-
- ${ant.version}
-
- Please install a version which is compatible with Ant ${buildmagic.ant15.baseversion} or ${buildmagic.ant16.baseversion}.
-
- </fail>
-
<!-- JDK Detection -->
<available classname="java.lang.StackTraceElement" property="HAVE_JDK_1.4"/>
<available classname="java.lang.Enum" property="HAVE_JDK_1.5"/>