~ubuntu-branches/ubuntu/vivid/tomcat7/vivid-proposed

« back to all changes in this revision

Viewing changes to res/maven/tomcat7-websocket.pom

  • Committer: Package Import Robot
  • Author(s): tony mancill, Gianfranco Costamagna, tony mancill
  • Date: 2013-12-24 16:46:34 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20131224164634-2racvo4wty70t0za
Tags: 7.0.47-1
[ Gianfranco Costamagna ]
* Team upload.
* New upstream release, patch refresh.
* Renamed patch fix-manager-webapp.path
  to fix-manager-webapp.patch (extension typo).
* Refresh patches for upstream release.
* Removed -Djava.net.preferIPv4Stack=true
  from init script (lp: #1088681),
  thanks Hendrik Haddorp.
* Added webapp manager path patch (lp: #1128067)
  thanks TJ.

[ tony mancill ]
* Bump Standards-Version to 3.9.5.
* Change copyright year in javadocs to 2013.
* Add patch to include the distribution name in error pages.
  (Closes: #729840)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
  Licensed to the Apache Software Foundation (ASF) under one or more
 
4
  contributor license agreements.  See the NOTICE file distributed with
 
5
  this work for additional information regarding copyright ownership.
 
6
  The ASF licenses this file to You under the Apache License, Version 2.0
 
7
  (the "License"); you may not use this file except in compliance with
 
8
  the License.  You may obtain a copy of the License at
 
9
 
 
10
      http://www.apache.org/licenses/LICENSE-2.0
 
11
 
 
12
  Unless required by applicable law or agreed to in writing, software
 
13
  distributed under the License is distributed on an "AS IS" BASIS,
 
14
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
15
  See the License for the specific language governing permissions and
 
16
  limitations under the License.
 
17
-->
 
18
<project>
 
19
  <modelVersion>4.0.0</modelVersion>
 
20
  <groupId>org.apache.tomcat</groupId>
 
21
  <artifactId>tomcat7-websocket</artifactId>
 
22
  <version>@MAVEN.DEPLOY.VERSION@</version>
 
23
  <description>Tomcat WebSocket (JSR356) implementation</description>
 
24
  <url>http://tomcat.apache.org/</url>
 
25
  <licenses>
 
26
    <license>
 
27
      <name>Apache License, Version 2.0</name>
 
28
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
 
29
      <distribution>repo</distribution>
 
30
    </license>
 
31
  </licenses>
 
32
  <dependencies>
 
33
    <dependency>
 
34
      <groupId>org.apache.tomcat</groupId>
 
35
      <artifactId>tomcat-websocket-api</artifactId>
 
36
      <version>@MAVEN.DEPLOY.VERSION@</version>
 
37
      <scope>compile</scope>
 
38
    </dependency>
 
39
    <dependency>
 
40
      <groupId>org.apache.tomcat</groupId>
 
41
      <artifactId>tomcat-catalina</artifactId>
 
42
      <version>@MAVEN.DEPLOY.VERSION@</version>
 
43
      <scope>compile</scope>
 
44
    </dependency>
 
45
    <dependency>
 
46
      <groupId>org.apache.tomcat</groupId>
 
47
      <artifactId>tomcat-coyote</artifactId>
 
48
      <version>@MAVEN.DEPLOY.VERSION@</version>
 
49
      <scope>compile</scope>
 
50
    </dependency>
 
51
    <dependency>
 
52
      <groupId>org.apache.tomcat</groupId>
 
53
      <artifactId>tomcat-juli</artifactId>
 
54
      <version>@MAVEN.DEPLOY.VERSION@</version>
 
55
      <scope>compile</scope>
 
56
    </dependency>
 
57
    <dependency>
 
58
      <groupId>org.apache.tomcat</groupId>
 
59
      <artifactId>tomcat-util</artifactId>
 
60
      <version>@MAVEN.DEPLOY.VERSION@</version>
 
61
      <scope>compile</scope>
 
62
    </dependency>
 
63
  </dependencies>
 
64
</project>