pom.xml (httpcomponents-client-4.5.5-src) | : | pom.xml (httpcomponents-client-4.5.6-src) | ||
---|---|---|---|---|
skipping to change at line 31 | skipping to change at line 31 | |||
This software consists of voluntary contributions made by many | This software consists of voluntary contributions made by many | |||
individuals on behalf of the Apache Software Foundation. For more | individuals on behalf of the Apache Software Foundation. For more | |||
information on the Apache Software Foundation, please see | information on the Apache Software Foundation, please see | |||
<http://www.apache.org />. | <http://www.apache.org />. | |||
--><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"> | --><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"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>org.apache.httpcomponents</groupId> | <groupId>org.apache.httpcomponents</groupId> | |||
<artifactId>httpcomponents-client</artifactId> | <artifactId>httpcomponents-client</artifactId> | |||
<version>4.5.5</version> | <version>4.5.6</version> | |||
</parent> | </parent> | |||
<artifactId>httpclient-win</artifactId> | <artifactId>httpclient-win</artifactId> | |||
<name>Apache HttpClient Windows features</name> | <name>Apache HttpClient Windows features</name> | |||
<description> | <description> | |||
Apache HttpClient Windows specific functionality | Apache HttpClient Windows specific functionality | |||
</description> | </description> | |||
<url>http://hc.apache.org/httpcomponents-client</url> | <url>http://hc.apache.org/httpcomponents-client</url> | |||
<packaging>jar</packaging> | <packaging>jar</packaging> | |||
<dependencies> | <dependencies> | |||
skipping to change at line 72 | skipping to change at line 72 | |||
<artifactId>jna-platform</artifactId> | <artifactId>jna-platform</artifactId> | |||
<scope>compile</scope> | <scope>compile</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>junit</groupId> | <groupId>junit</groupId> | |||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
<build> | ||||
<plugins> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-jar-plugin</artifactId> | ||||
<executions> | ||||
<execution> | ||||
<id>default-jar</id> | ||||
<phase>package</phase> | ||||
<goals> | ||||
<goal>jar</goal> | ||||
</goals> | ||||
<configuration> | ||||
<archive combine.children="append"> | ||||
<manifestEntries> | ||||
<Automatic-Module-Name>org.apache.httpcomponents.httpclient-wi | ||||
n</Automatic-Module-Name> | ||||
</manifestEntries> | ||||
</archive> | ||||
</configuration> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
</plugins> | ||||
</build> | ||||
<reporting> | <reporting> | |||
<plugins> | <plugins> | |||
<plugin> | <plugin> | |||
<artifactId>maven-javadoc-plugin</artifactId> | <artifactId>maven-javadoc-plugin</artifactId> | |||
<version>${hc.javadoc.version}</version> | <version>${hc.javadoc.version}</version> | |||
<configuration> | <configuration> | |||
<!-- reduce console output. Can override with -Dquiet=false --> | <!-- reduce console output. Can override with -Dquiet=false --> | |||
<quiet>true</quiet> | <quiet>true</quiet> | |||
<source>${maven.compiler.source}</source> | <source>${maven.compiler.source}</source> | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 27 lines changed or added |