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

« back to all changes in this revision

Viewing changes to contrib/sweeper/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
  <modelVersion>4.0.0</modelVersion>
 
3
  <parent>
 
4
    <artifactId>project</artifactId>
 
5
    <groupId>org.mortbay.jetty</groupId>
 
6
    <version>6.1.19</version>
 
7
    <relativePath>../../pom.xml</relativePath>
 
8
  </parent>
 
9
  <groupId>org.mortbay.jetty</groupId>
 
10
  <artifactId>sweeper</artifactId>
 
11
  <version>6.1.19</version>
 
12
  <packaging>jar</packaging>
 
13
  <name>A Sweeper for tmp dirs not being deleted due to a sun bug on windows</name>
 
14
 
 
15
  <build>
 
16
    <plugins>
 
17
      <plugin>
 
18
        <artifactId>maven-jar-plugin</artifactId>
 
19
        <configuration>
 
20
          <archive>
 
21
            <manifest>
 
22
              <mainClass>org.mortbay.util.daemon.Sweeper</mainClass>
 
23
            </manifest>
 
24
          </archive>
 
25
        </configuration>
 
26
      </plugin>
 
27
    </plugins>
 
28
  </build>
 
29
 
 
30
</project>