~ubuntu-branches/ubuntu/vivid/httpcomponents-core/vivid

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-10-25 23:01:10 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20141025230110-lhr341pbqk6l2loc
Tags: 4.3.3-1
* New upstream release
* Ignore the apache-rat-plugin
* Standards-Version updated to 3.9.6 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  <modelVersion>4.0.0</modelVersion>
34
34
  <artifactId>httpcomponents-core</artifactId>
35
35
  <name>Apache HttpComponents Core</name>
36
 
  <version>4.3.2</version>
 
36
  <version>4.3.3</version>
37
37
  <description>Core components to build HTTP enabled services</description>
38
38
  <url>http://hc.apache.org/httpcomponents-core</url>
39
39
  <inceptionYear>2005</inceptionYear>
47
47
  <licenses>
48
48
    <license>
49
49
      <name>Apache License, Version 2.0</name>
50
 
      <url>LICENSE.txt</url>
 
50
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
51
51
      <distribution>repo</distribution>
52
52
    </license>
53
53
  </licenses>
58
58
  </issueManagement>
59
59
 
60
60
  <scm>
61
 
    <connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.2</connection>
62
 
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.2</developerConnection>
63
 
    <url>https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.2</url>
 
61
    <connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.3</connection>
 
62
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.3</developerConnection>
 
63
    <url>https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.3</url>
64
64
  </scm>
65
65
 
66
66
  <modules>
71
71
  </modules>
72
72
 
73
73
  <properties>
 
74
    <maven.compiler.source>1.5</maven.compiler.source>
 
75
    <maven.compiler.target>1.5</maven.compiler.target>  
74
76
    <!-- Override parent 7 setting for deprecation (only - other settings stand)-->
75
77
    <maven.compiler.showDeprecation>false</maven.compiler.showDeprecation>
76
78
    <junit.version>4.9</junit.version>
298
300
          <comparisonVersion>${api.comparison.version}</comparisonVersion>
299
301
        </configuration>
300
302
      </plugin>
 
303
      <plugin>
 
304
        <groupId>org.apache.rat</groupId>
 
305
        <artifactId>apache-rat-plugin</artifactId>
 
306
        <version>0.11</version>
 
307
        <executions>
 
308
          <execution>
 
309
            <phase>verify</phase>
 
310
            <goals>
 
311
              <goal>check</goal>
 
312
            </goals>
 
313
            <configuration>
 
314
              <excludes>
 
315
                <exclude>NOTICE.*</exclude>
 
316
                <exclude>LICENSE.*</exclude>
 
317
                <exclude>README.*</exclude>
 
318
                <exclude>**/.*</exclude>
 
319
                <exclude>.*/**/*</exclude>
 
320
              </excludes>
 
321
            </configuration>
 
322
          </execution>
 
323
        </executions>
 
324
        <configuration>
 
325
          <excludes>
 
326
            <exclude>src/docbkx/resources/**</exclude>
 
327
            <exclude>src/test/resources/*.truststore</exclude>
 
328
          </excludes>
 
329
        </configuration>
 
330
      </plugin>
301
331
    </plugins>
302
332
  </build>
303
333