forked from jbossejb3/jboss-ejb3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
183 lines (156 loc) · 6.01 KB
/
pom.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-aggregator</artifactId>
<version>2.0.0-alpha-4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBoss EJB 3</name>
<url>http://www.jboss.org/ejb3</url>
<build>
<!-- make it easier to copy it around -->
<finalName>${artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<!-- list only dependencies which are allowed by all modules -->
<dependencies>
<dependency>
<groupId>${javax.ejb.groupId}</groupId>
<artifactId>${javax.ejb.artifactId}</artifactId>
<version>${javax.ejb.version}</version>
</dependency>
<dependency>
<groupId>${javax.interceptor.groupId}</groupId>
<artifactId>${javax.interceptor.artifactId}</artifactId>
<version>${javax.interceptor.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>2.2.17.GA</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-endpoint</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-interceptors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3.context</groupId>
<artifactId>jboss-ejb3-context-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3.context</groupId>
<artifactId>jboss-ejb3-context-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3.effigy</groupId>
<artifactId>jboss-ejb3-effigy-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3.effigy</groupId>
<artifactId>jboss-ejb3-effigy-dsl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ejb3.servitor</groupId>
<artifactId>jboss-ejb3-servitor-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.org.jboss.logging}</version>
</dependency>
</dependencies>
</dependencyManagement>
<developers>
<developer>
<name>Carlo de Wolf</name>
<email>[email protected]</email>
<organization>JBoss, a division of Red Hat, Inc.</organization>
<organizationUrl>http://www.jboss.com</organizationUrl>
<roles>
<role>Project Lead</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<name>Andrew Lee Rubinger</name>
<email>[email protected]</email>
<organization>JBoss, a division of Red Hat, Inc.</organization>
<organizationUrl>http://www.jboss.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<name>Jaikiran Pai</name>
<email>[email protected]</email>
<organization>JBoss, a division of Red Hat, Inc.</organization>
<organizationUrl>http://www.jboss.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>+5:30</timezone>
</developer>
</developers>
<issueManagement>
<system>jira</system>
<url>https://issues.jboss.org/browse/EJBTHREE</url>
</issueManagement>
<modules>
<!-- here be modules -->
<module>cache</module>
<module>concurrency</module>
<module>context</module>
<module>effigy</module>
<module>endpoint</module>
<module>interceptors</module>
<module>pool</module>
<module>servitor</module>
<module>tx</module>
</modules>
<properties>
<javax.ejb.groupId>org.jboss.spec.javax.ejb</javax.ejb.groupId>
<javax.ejb.artifactId>jboss-ejb-api_3.1_spec</javax.ejb.artifactId>
<javax.ejb.version>1.0.0.Final</javax.ejb.version>
<javax.interceptor.groupId>org.jboss.spec.javax.interceptor</javax.interceptor.groupId>
<javax.interceptor.artifactId>jboss-interceptors-api_1.1_spec</javax.interceptor.artifactId>
<javax.interceptor.version>1.0.0.Final</javax.interceptor.version>
<version.org.jboss.logging>3.0.0.Beta4</version.org.jboss.logging>
</properties>
<scm>
<connection>scm:git:git://github.com/jbossejb3/jboss-ejb3.git</connection>
<developerConnection>scm:git:[email protected]:jbossejb3/jboss-ejb3.git</developerConnection>
<url>http://github.com/jbossejb3/jboss-ejb3</url>
</scm>
</project>