~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-11-02 13:55:47 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131102135547-nhcubj3ae7rv6t13
Tags: 1.6-1
* New upstream release
* Updated Standards-Version to 3.9.5 (no changes)
* Build depend on debhelper >= 9
* Removed the unused debian/orig-tar.sh script

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
  <parent>
21
21
    <groupId>org.apache.commons</groupId>
22
22
    <artifactId>commons-parent</artifactId>
23
 
    <version>28</version>
 
23
    <version>32</version>
24
24
  </parent>
25
25
 
26
26
  <groupId>org.apache.commons</groupId>
27
27
  <artifactId>commons-compress</artifactId>
28
 
  <version>1.5</version>
29
 
  <name>Commons Compress</name>
30
 
  <url>http://commons.apache.org/compress/</url>
 
28
  <version>1.6</version>
 
29
  <name>Apache Commons Compress</name>
 
30
  <url>http://commons.apache.org/proper/commons-compress/</url>
31
31
  <!-- The description is not indented to make it look better in the release notes -->
32
32
  <description>
33
33
Apache Commons Compress software defines an API for working with compression and archive formats.
34
 
These include: bzip2, gzip, pack200, xz and ar, cpio, jar, tar, zip, dump.
 
34
These include: bzip2, gzip, pack200, xz and ar, cpio, jar, tar, zip, dump, 7z, arj.
35
35
  </description>
36
36
 
37
37
  <properties>
38
 
    <maven.compile.source>1.5</maven.compile.source>
39
 
    <maven.compile.target>1.5</maven.compile.target>
 
38
    <maven.compiler.source>1.5</maven.compiler.source>
 
39
    <maven.compiler.target>1.5</maven.compiler.target>
40
40
    <commons.componentid>compress</commons.componentid>
41
41
    <commons.jira.id>COMPRESS</commons.jira.id>
42
42
    <commons.jira.pid>12310904</commons.jira.pid>
43
43
    <!-- configuration bits for cutting a release candidate -->
44
 
    <commons.release.version>1.5</commons.release.version>
 
44
    <commons.release.version>1.6</commons.release.version>
45
45
    <commons.rc.version>RC1</commons.rc.version>
46
46
  </properties>
47
47
 
54
54
    <dependency>
55
55
      <groupId>junit</groupId>
56
56
      <artifactId>junit</artifactId>
57
 
      <version>4.10</version>
 
57
      <version>4.11</version>
58
58
      <scope>test</scope>
59
59
    </dependency>
60
60
    <dependency>
61
61
      <groupId>org.tukaani</groupId>
62
62
      <artifactId>xz</artifactId>
63
 
      <version>1.2</version>
 
63
      <version>1.4</version>
64
64
    </dependency>
65
65
  </dependencies>
66
66
 
90
90
      <id>julius</id>
91
91
      <email>julius at apache.org</email>
92
92
    </developer>
 
93
    <developer>
 
94
      <name>Damjan Jovanovic</name>
 
95
      <id>damjan</id>
 
96
      <email>damjan at apache.org</email>
 
97
    </developer>
93
98
  </developers>
94
99
 
95
100
  <contributors>
119
124
  </contributors>
120
125
 
121
126
  <scm>
122
 
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.5</connection>
123
 
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.5</developerConnection>
124
 
    <url>http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.5</url>
 
127
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
 
128
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.6</developerConnection>
 
129
    <url>http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.6</url>
125
130
  </scm>
126
131
 
127
132
  <build>
194
199
        <version>2.5</version>
195
200
        <configuration>
196
201
          <minimumTokens>200</minimumTokens>
197
 
          <targetJdk>${maven.compile.source}</targetJdk>
 
202
          <targetJdk>${maven.compiler.source}</targetJdk>
198
203
          <rulesets>
199
204
            <ruleset>${basedir}/pmd-ruleset.xml</ruleset>
200
205
          </rulesets>
206
211
        <artifactId>maven-javadoc-plugin</artifactId>
207
212
        <configuration> 
208
213
          <quiet>true</quiet>
209
 
          <source>${maven.compile.source}</source>
 
214
          <source>${maven.compiler.source}</source>
210
215
          <encoding>${commons.encoding}</encoding>
211
216
          <docEncoding>${commons.docEncoding}</docEncoding>
212
217
          <linksource>true</linksource>