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

« back to all changes in this revision

Viewing changes to extras/threadpool/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>jetty-java5-threadpool</artifactId>
 
11
  <name>Jetty Java5 Threadpool</name>
 
12
  <build>
 
13
    <plugins>
 
14
       <plugin>
 
15
        <artifactId>maven-compiler-plugin</artifactId>
 
16
        <configuration>
 
17
          <source>1.5</source>
 
18
          <target>1.5</target>
 
19
        </configuration>
 
20
      </plugin>
 
21
      <plugin>
 
22
        <artifactId>maven-antrun-plugin</artifactId>
 
23
        <executions>
 
24
          <execution>
 
25
            <id>copyfiles</id>
 
26
            <phase>install</phase>
 
27
            <goals>
 
28
              <goal>run</goal>
 
29
            </goals>
 
30
            <configuration>
 
31
              <tasks>
 
32
                <copy failonerror="false" file="target/${project.artifactId}-${project.version}.${project.packaging}" todir="../../lib/ext" />
 
33
              </tasks>
 
34
            </configuration>
 
35
          </execution>
 
36
          <execution>
 
37
            <id>clean</id>
 
38
            <phase>clean</phase>
 
39
            <goals>
 
40
              <goal>run</goal>
 
41
            </goals>
 
42
            <configuration>
 
43
              <tasks>
 
44
                <delete failonerror="false" file="../../lib/ext/${project.artifactId}-${project.version}.${project.packaging}"/>
 
45
              </tasks>
 
46
            </configuration>
 
47
          </execution>            
 
48
        </executions>
 
49
      </plugin>
 
50
        </plugins>
 
51
  </build>
 
52
  <dependencies>
 
53
    <dependency>
 
54
      <groupId>org.mortbay.jetty</groupId>
 
55
      <artifactId>jetty-util</artifactId>
 
56
      <version>${project.version}</version>
 
57
    </dependency>
 
58
    <dependency>
 
59
      <groupId>junit</groupId>
 
60
      <artifactId>junit</artifactId>
 
61
      <scope>test</scope>
 
62
    </dependency>
 
63
  </dependencies>
 
64
</project>