~ubuntu-branches/ubuntu/precise/cobertura/precise

« back to all changes in this revision

Viewing changes to src/net/sourceforge/cobertura/webapp/web.xml

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-05-11 19:21:46 UTC
  • mfrom: (0.1.4 sid) (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100511192146-j742v5jsl89ztndu
Tags: 1.9.4.1+dfsg-2
* Now Build-Depends on libservlet2.5-java and add a missing Depends
  on the same package. (Closes: #580842). 
* Simplify list of JRE dependences for cobertura and drop JRE dependences for
  libcobertura-java as Java libraries are no longer required to depend on a
  JVM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
 
3
<!--
 
4
 Copyright (C) 2009 Amit Nithianandan
 
5
 
 
6
 Licensed to the Apache Software Foundation (ASF) under one or more
 
7
 contributor license agreements.  See the NOTICE file distributed with
 
8
 this work for additional information regarding copyright ownership.
 
9
 The ASF licenses this file to You under the Apache License, Version 2.0
 
10
 (the "License"); you may not use this file except in compliance with
 
11
 the License.  You may obtain a copy of the License at
 
12
 
 
13
     http://www.apache.org/licenses/LICENSE-2.0
 
14
 
 
15
 Unless required by applicable law or agreed to in writing, software
 
16
 distributed under the License is distributed on an "AS IS" BASIS,
 
17
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
18
 See the License for the specific language governing permissions and
 
19
 limitations under the License.
 
20
-->
 
21
 
 
22
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
 
23
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
24
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
 
25
    version="2.4">
 
26
 
 
27
 
 
28
  <servlet>
 
29
    <servlet-name>CoberturaFlushServlet</servlet-name>
 
30
    <display-name>CoberturaFlushServlet</display-name>
 
31
    <description>CoberturaFlushServlet</description>
 
32
    <servlet-class>net.sourceforge.cobertura.webapp.FlushCoberturaServlet</servlet-class>
 
33
    <load-on-startup>1</load-on-startup>
 
34
  </servlet>
 
35
 
 
36
  
 
37
  <servlet-mapping>
 
38
    <servlet-name>CoberturaFlushServlet</servlet-name>
 
39
    <url-pattern>/flushCobertura</url-pattern>
 
40
  </servlet-mapping>
 
41
 
 
42
</web-app>