~ubuntu-branches/ubuntu/quantal/jetty/quantal

« back to all changes in this revision

Viewing changes to examples/spring-ebj3-demo/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Claude
  • Date: 2009-09-07 00:22:20 UTC
  • mfrom: (1.1.5 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090907002220-8w7luxa3m4otve4g
Tags: 6.1.20-2
* Move documentation to /usr/share/doc/libjetty-java
* Better postinst and postrm scripts, aligned with tomcat6 scripts:
   - postinst: user jetty is created with its own group
   - postrm: better cleanup of temporary data,
     thourough remove and purge of data
* debian/changelog:
  - fix suggest for package libjetty-java-doc, add libjetty-java-doc
    to the list of Suggests for libjetty-java
  - add libjetty-extra to the list of Suggests for package jetty.

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.20</version>
 
6
    <relativePath>../../pom.xml</relativePath>
 
7
  </parent>
 
8
  <modelVersion>4.0.0</modelVersion>
 
9
  <groupId>org.mortbay.jetty</groupId>
 
10
  <artifactId>spring-ejb3-demo</artifactId>
 
11
  <packaging>war</packaging>
 
12
  <name>spring ejb3 demo webapp</name>
 
13
  <build>
 
14
    <plugins>
 
15
      <plugin>
 
16
        <artifactId>maven-compiler-plugin</artifactId>
 
17
        <configuration>
 
18
          <source>1.5</source>
 
19
          <target>1.5</target>
 
20
        </configuration>
 
21
      </plugin>
 
22
    </plugins>
 
23
  </build>
 
24
  <dependencies>
 
25
   <dependency>
 
26
     <groupId>org.apache.geronimo.specs</groupId>
 
27
     <artifactId>geronimo-ejb_3.0_spec</artifactId>
 
28
     <version>1.0.1</version>
 
29
     <scope>provided</scope>
 
30
   </dependency>
 
31
  </dependencies>
 
32
</project>