~ubuntu-branches/ubuntu/utopic/jzlib/utopic

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-10-06 23:51:14 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111006235114-5yhe9d6q9fzgm546
Tags: 1.1.0-1
* New upstream release (since 2008)!
  - d/copyright: Update source location to github and copyright's years.
  - d/copyright: Use DEP-5 format.
* d/libjzlib-java.poms: Drop debian/pom.xml and use upstream pom.xml.
* d/{control,rules}: Use javahelper to build jzlib instead of ant.
  - d/build.xml: Dropped.
  - d/javabuild and d/libjzlib-java.jlibs: Added for javahelper.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
 
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
4
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
5
  <modelVersion>4.0.0</modelVersion>
 
6
  <groupId>com.jcraft</groupId>
 
7
  <artifactId>jzlib</artifactId>
 
8
  <version>1.1.0</version>
 
9
  <name>JZlib</name>
 
10
  <description>JZlib is a re-implementation of zlib in pure Java</description>
 
11
  <url>http://www.jcraft.com/jzlib/</url>
 
12
 
 
13
  <organization>
 
14
    <name>jcraft</name>
 
15
    <url>http://www.jcraft.com/</url>
 
16
  </organization>
 
17
 
 
18
  <licenses>
 
19
    <license>
 
20
      <name>BSD</name>
 
21
      <url>http://www.jcraft.com/jzlib/LICENSE.txt</url>
 
22
    </license>
 
23
  </licenses>
 
24
 
 
25
  <build>
 
26
    <plugins>
 
27
      <plugin>
 
28
        <artifactId>maven-compiler-plugin</artifactId>
 
29
        <version>2.0</version>
 
30
        <configuration>
 
31
          <source>1.5</source>
 
32
          <target>1.5</target>
 
33
        </configuration>
 
34
      </plugin>
 
35
    </plugins>
 
36
  </build>
 
37
</project>