~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to contrib/jboss/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-08-09 08:48:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090809084810-k522b97ind2robyd
ImportĀ upstreamĀ versionĀ 6.1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<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/maven-v4_0_0.xsd">
 
2
  <parent>
 
3
    <artifactId>project</artifactId>
 
4
    <groupId>org.mortbay.jetty</groupId>
 
5
    <version>6.1.19</version>
 
6
    <relativePath>../../pom.xml</relativePath>
 
7
  </parent>
 
8
  <modelVersion>4.0.0</modelVersion>
 
9
  <groupId>org.mortbay.jetty</groupId>
 
10
  <artifactId>jboss-jetty</artifactId>
 
11
  <packaging>jboss-sar</packaging>
 
12
  <name>Jetty JBoss</name>
 
13
  <build>
 
14
    <plugins>
 
15
      <plugin>
 
16
        <groupId>org.codehaus.mojo</groupId>
 
17
        <artifactId>jboss-packaging-maven-plugin</artifactId>
 
18
        <version>2.0-beta-1</version>
 
19
        <extensions>true</extensions>
 
20
      </plugin>
 
21
    </plugins>
 
22
  </build>
 
23
  <repositories>
 
24
    <repository>
 
25
      <id>jboss-repo</id>
 
26
      <name>jboss</name>
 
27
      <url>http://repository.jboss.com/maven2</url>
 
28
      <layout>default</layout>
 
29
    </repository>
 
30
    <repository>
 
31
      <id>Codehaus Snapshots</id>
 
32
      <url>http://snapshots.repository.codehaus.org/</url>
 
33
      <snapshots>
 
34
        <enabled>true</enabled>
 
35
      </snapshots>
 
36
      <releases>
 
37
        <enabled>false</enabled>
 
38
      </releases>
 
39
    </repository>
 
40
  </repositories>
 
41
  <dependencies>
 
42
    <dependency>
 
43
      <groupId>org.mortbay.jetty</groupId>
 
44
      <artifactId>jetty-ajp</artifactId>
 
45
      <version>${project.version}</version>
 
46
    </dependency>
 
47
    <dependency>
 
48
      <groupId>org.mortbay.jetty</groupId>
 
49
      <artifactId>jetty-sslengine</artifactId>
 
50
      <version>${project.version}</version>
 
51
    </dependency>
 
52
    <dependency>
 
53
      <groupId>org.mortbay.jetty</groupId>
 
54
      <artifactId>jetty-management</artifactId>
 
55
      <version>${project.version}</version>
 
56
      <exclusions>
 
57
        <exclusion>
 
58
          <groupId>mx4j</groupId>
 
59
          <artifactId>mx4j</artifactId>
 
60
        </exclusion>
 
61
         <exclusion>
 
62
          <groupId>mx4j</groupId>          
 
63
          <artifactId>mx4j-tools</artifactId>
 
64
         </exclusion>
 
65
      </exclusions>
 
66
    </dependency>
 
67
    <dependency>
 
68
      <groupId>jboss</groupId>
 
69
      <artifactId>jboss</artifactId>
 
70
      <version>${jboss.version}</version>
 
71
      <systemPath>${jboss.home}/server/all/lib/jboss.jar</systemPath>
 
72
      <scope>system</scope>
 
73
    </dependency>
 
74
    <dependency>
 
75
      <groupId>jboss</groupId>
 
76
      <artifactId>jboss-common</artifactId>
 
77
      <version>${jboss.version}</version>
 
78
      <systemPath>${jboss.home}/lib/jboss-common.jar</systemPath>
 
79
      <scope>system</scope>
 
80
    </dependency>
 
81
    <dependency>
 
82
      <groupId>jboss</groupId>
 
83
      <artifactId>jboss-system</artifactId>
 
84
      <version>${jboss.version}</version>
 
85
      <systemPath>${jboss.home}/lib/jboss-system.jar</systemPath>
 
86
      <scope>system</scope>
 
87
    </dependency>
 
88
    <dependency>
 
89
      <groupId>jboss</groupId>
 
90
      <artifactId>jboss-jmx</artifactId>
 
91
      <version>${jboss.version}</version>
 
92
      <systemPath>${jboss.home}/lib/jboss-jmx.jar</systemPath>
 
93
      <scope>system</scope>
 
94
    </dependency>
 
95
    <dependency>
 
96
      <groupId>jboss</groupId>
 
97
      <artifactId>jbosssx</artifactId>
 
98
      <version>${jboss.version}</version>
 
99
      <systemPath>${jboss.home}/server/all/lib/jbosssx.jar</systemPath>
 
100
      <scope>system</scope>
 
101
    </dependency>
 
102
    <dependency>
 
103
      <groupId>jboss</groupId>
 
104
      <artifactId>jboss-jsr77</artifactId>
 
105
      <version>${jboss.version}</version>
 
106
      <systemPath>${jboss.home}/server/all/lib/jboss-jsr77.jar</systemPath>
 
107
      <scope>system</scope>
 
108
    </dependency>
 
109
    <dependency>
 
110
      <groupId>jboss</groupId>
 
111
      <artifactId>jboss-j2ee</artifactId>
 
112
      <version>${jboss.version}</version>
 
113
      <systemPath>${jboss.home}/server/all/lib/jboss-j2ee.jar</systemPath>
 
114
      <scope>system</scope>
 
115
    </dependency>
 
116
  </dependencies>
 
117
  <profiles>
 
118
    <profile>
 
119
      <id>jdk1.4</id>
 
120
      <build>
 
121
        <finalName>jetty-${version}-jboss-${jboss.version}-jsp-2.0</finalName>
 
122
      </build>
 
123
      <dependencies>
 
124
        <dependency>
 
125
          <groupId>org.mortbay.jetty</groupId>
 
126
          <artifactId>jsp-2.0</artifactId>
 
127
          <version>${project.version}</version>
 
128
          <type>pom</type>
 
129
          <exclusions>
 
130
            <exclusion>
 
131
              <artifactId>commons-logging</artifactId>
 
132
              <groupId>commons-logging</groupId>
 
133
            </exclusion>
 
134
            <exclusion>
 
135
              <groupId>org.slf4j</groupId>
 
136
              <artifactId>jcl104-over-slf4j</artifactId>
 
137
            </exclusion>
 
138
            <exclusion>
 
139
              <groupId>org.slf4j</groupId>
 
140
              <artifactId>slf4j-simple</artifactId>
 
141
            </exclusion>
 
142
            <exclusion>
 
143
              <groupId>xerces</groupId>
 
144
              <artifactId>xercesImpl</artifactId>
 
145
            </exclusion>
 
146
            <exclusion>
 
147
              <groupId>xerces</groupId>
 
148
              <artifactId>xmlParserAPIs</artifactId>
 
149
            </exclusion>
 
150
          </exclusions>
 
151
        </dependency>
 
152
        <dependency>
 
153
          <groupId>org.slf4j</groupId>
 
154
          <artifactId>slf4j-log4j12</artifactId>
 
155
          <version>1.0.1</version>
 
156
        </dependency>
 
157
        <dependency>
 
158
          <groupId>org.mortbay.jetty</groupId>
 
159
          <artifactId>jetty</artifactId>
 
160
          <version>${project.version}</version>
 
161
        </dependency>
 
162
      </dependencies>
 
163
    </profile>
 
164
    <profile>
 
165
      <id>jdk1.5</id>
 
166
      <!-- activated on JDK 5 and above -->
 
167
      <build>
 
168
        <finalName>jetty-${version}-jboss-${jboss.version}-jsp-2.1</finalName>
 
169
      </build>
 
170
      <dependencies>
 
171
        <dependency>
 
172
          <groupId>org.mortbay.jetty</groupId>
 
173
          <artifactId>jetty</artifactId>
 
174
          <version>${project.version}</version>
 
175
        </dependency>
 
176
        <dependency>
 
177
          <groupId>org.mortbay.jetty</groupId>
 
178
          <artifactId>jsp-2.1-jetty</artifactId>
 
179
          <version>${project.version}</version>
 
180
        </dependency>
 
181
        <dependency>
 
182
          <groupId>org.slf4j</groupId>
 
183
          <artifactId>slf4j-log4j12</artifactId>
 
184
          <version>1.0.1</version>
 
185
        </dependency>
 
186
      </dependencies>
 
187
    </profile>
 
188
  </profiles>
 
189
</project>