~ubuntu-branches/ubuntu/precise/jetty/precise-updates

« back to all changes in this revision

Viewing changes to contrib/j2se6/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Niels Thykier
  • Date: 2009-10-23 20:45:43 UTC
  • mfrom: (1.1.6 upstream) (2.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20091023204543-3c4pyw0dhqq4qloh
Tags: 6.1.21-1
* New upstream release.
* Stopped using /tmp/jetty-temp in /etc/init.d/jetty for security
  reasons.
  - JVM_TMP is now /var/cache/jetty/tmp
  - JETTY_TMP is now /var/cache/jetty/data
* The postrm script no longer deletes files in /tmp/jetty-temp.
* Removed Philipp Meier from Uploaders (last upload was 2006-06-07).
  Thanks for your work on this package.
* Corrected javadoc symlink in binary package jetty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  <parent>
4
4
    <artifactId>project</artifactId>
5
5
    <groupId>org.mortbay.jetty</groupId>
6
 
    <version>6.1.20</version>
 
6
    <version>6.1.21</version>
7
7
  </parent>
8
 
        <modelVersion>4.0.0</modelVersion>
 
8
  <modelVersion>4.0.0</modelVersion>
9
9
  <groupId>org.mortbay.jetty</groupId>
10
 
  <artifactId>j2se6</artifactId>
 
10
  <artifactId>jetty-j2se6</artifactId>
11
11
  <packaging>jar</packaging>
12
 
  <name>J2SE6</name>
 
12
  <name>Jetty :: J2SE6 Http Server</name>
13
13
  <url>http://jetty.mortbay.org</url>
14
14
  <licenses>
15
15
    <license>
29
29
    </resources>
30
30
    <plugins>
31
31
      <plugin>
 
32
        <groupId>org.apache.maven.plugins</groupId>
 
33
        <artifactId>maven-enforcer-plugin</artifactId>
 
34
        <version>1.0-beta-1</version>
 
35
        <executions>
 
36
          <execution>
 
37
            <id>enforce-java</id>
 
38
            <goals>
 
39
              <goal>enforce</goal>
 
40
            </goals>
 
41
            <configuration>
 
42
              <rules>
 
43
                <requireJavaVersion>
 
44
                  <version>[1.6,)</version>
 
45
                </requireJavaVersion>
 
46
              </rules>    
 
47
            </configuration>
 
48
          </execution>
 
49
        </executions>
 
50
      </plugin>
 
51
 
 
52
      <plugin>
32
53
        <artifactId>maven-compiler-plugin</artifactId>
33
54
        <configuration>
34
55
          <source>1.6</source>
35
56
          <target>1.6</target>
36
57
          <fork>true</fork>
37
 
          <executable>${J2SE6_HOME}/bin/javac</executable>
38
58
        </configuration>
39
59
      </plugin>
40
60
    </plugins>