Advertisement
PasteyMash

Untitled

Mar 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <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/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>FirstEclipse</groupId>
  4.   <artifactId>FirstEclipse</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <build>
  7.     <sourceDirectory>src</sourceDirectory>
  8.     <plugins>
  9.       <plugin>
  10.         <artifactId>maven-compiler-plugin</artifactId>
  11.         <version>3.7.0</version>
  12.         <configuration>
  13.           <source>1.8</source>
  14.           <target>1.8</target>
  15.         </configuration>
  16.       </plugin>
  17.     </plugins>
  18.   </build>
  19.   <dependencies>
  20.     <dependency>
  21.         <groupId>org.apache.httpcomponents</groupId>
  22.         <artifactId>httpclient</artifactId>
  23.         <version>4.5.5</version>
  24.     </dependency>
  25.   </dependencies>
  26. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement