-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-thirdparty-EAP4.xml
136 lines (113 loc) · 6.84 KB
/
build-thirdparty-EAP4.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="UTF-8"?>
<!-- =========================================================================================== -->
<!-- -->
<!-- JBoss, Home of Professional Open Source -->
<!-- Copyright 2005, JBoss Inc., and individual contributors as indicated -->
<!-- by the @authors tag. See the copyright.txt in the distribution for a -->
<!-- full listing of individual contributors. -->
<!-- -->
<!-- This is free software; you can redistribute it and/or modify it -->
<!-- under the terms of the GNU Lesser General Public License as -->
<!-- published by the Free Software Foundation; either version 2.1 of -->
<!-- the License, or (at your option) any later version. -->
<!-- -->
<!-- This software is distributed in the hope that it will be useful, -->
<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -->
<!-- Lesser General Public License for more details. -->
<!-- -->
<!-- You should have received a copy of the GNU Lesser General Public -->
<!-- License along with this software; if not, write to the Free -->
<!-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -->
<!-- 02110-1301 USA, or see the FSF site: http://www.fsf.org. -->
<!-- -->
<!-- =========================================================================================== -->
<!-- =========================================================================================== -->
<!-- -->
<!-- $Id$ -->
<!-- -->
<!-- =========================================================================================== -->
<project name="main.build" default="synchronize">
<!-- ======================================================================================== -->
<!-- Configuration -->
<!-- ======================================================================================== -->
<property file="local.properties"/>
<property file="synchronize.properties"/>
<property name="librariesEntFile" value="./thirdparty/libraries.ent"/>
<property environment="ENV"/>
<!--
| Allow jbossbuild.repository to be set from (in order or priority)
| 1) Command line -Djbossbuild.repository=...
| 2) synchronize.properties jbossbuild.repository setting
| 3) JBOSS_REPOSITORY environment variable
-->
<condition property="jbossbuild.repository" value="${ENV.JBOSS_REPOSITORY}">
<isset property="ENV.JBOSS_REPOSITORY"/>
</condition>
<!--
| Fall back to default.
-->
<property name="jbossbuild.repository" value="http://repository.jboss.com"/>
<import file="./tools/etc/jbossbuild/tasks.xml"/>
<!--
| This is where JBoss Messaging external dependencies are declared. The repository is in CVS
| under the module repository.jboss.com whose contents are pushed to the
| http://repository.jboss.com site.
-->
<build id="jboss-messaging"
impltitle="JBoss Messaging"
implversion="undefined"
implvendor="JBoss Inc."
implurl="http://www.jboss.org"
description="JBoss Messaging"
cvsroot="${cvs.prefix}@cvs.forge.jboss.com:/cvsroot/jboss"
thirdpartypath="./thirdparty/"
location="${jbossbuild.repository}"
targetdefs="targets">
<!--
Dependencies required to build the project.
-->
<componentref name="retrotranslator" version="0.9.6jboss"/>
<componentref name="sun-javacc" version="3.2-brew"/>
<componentref name="oswego-concurrent" version="1.3.4.patch01-brew"/>
<componentref name="apache-log4j" version="1.2.14-brew"/>
<componentref name="javassist" version="3.8.0.GA"/>
<componentref name="jgroups" version="2.4.6.GA-brew"/>
<componentref name="trove" version="1.0.2-brew"/>
<componentref name="jboss/common" version="1.2.1.GA-brew"/>
<componentref name="jboss/aop" version="1.5.6.GA"/>
<componentref name="jboss/remoting" version="2.2.3.SP1"/>
<componentref name="jboss/jbossts14" version="4.2.3.SP5_CP05-brew"/>
<componentref name="jbossas/core-libs" version="4.2.0.GA"/>
<!--
Totally unapropriate here, but this is what we need to do for the time being if we
want HTTP.
See http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4022727 for more details.
-->
<componentref name="apache-tomcat" version="5.5.15"/>
<!--
Dependencies required to test the project.
-->
<componentref name="junit" version="3.8.2-brew"/>
<componentref name="hsqldb" version="1.8.0.8.patch01-brew"/>
<componentref name="dom4j" version="1.6.1-brew"/>
<componentref name="apache-xerces" version="2.7.1-brew"/> <!-- needed by org.jboss.logging.Log4jLoggerPlugin -->
<componentref name="jboss/profiler/jvmti" version="1.0.0.CR5-brew"/>
<componentref name="jboss/jbossxb" version="1.0.0.SP1-brew"/>
<componentref name="jboss/test14" version="1.0.0.GA"/>
<componentref name="sun-servlet" version="2.4"/>
<!-- This is a non declared dependency of jboss/test14 -->
<componentref name="jboss/jbossretro-rt" version="1.0.5.GA"/>
<!-- This is a non declared dependency of jboss/test14 -->
<componentref name="jboss/backport-concurrent" version="2.1.0.GA"/>
</build>
<synchronizeinfo/>
<!--
| Generate the targets.
-->
<generate generate="jboss-messaging"/>
<target name="generate-libraries-ent" depends="synchronize">
<gen-lib-file path="tools/etc/buildmagic" filename="${librariesEntFile}"/>
<visit-componentref-graph componentVisitor="org.jboss.ant.util.graph.ComponentRefGraphLicenseVisitor"/>
</target>
</project>