Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.31 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.  
  5.   <groupId>com.upp</groupId>
  6.   <artifactId>project</artifactId>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <packaging>jar</packaging>
  9.  
  10.   <name>project</name>
  11.   <url>http://maven.apache.org</url>
  12.  
  13.   <properties>
  14.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.   </properties>
  16.  
  17.   <dependencies>
  18.     <dependency>
  19.       <groupId>junit</groupId>
  20.       <artifactId>junit</artifactId>
  21.       <version>3.8.1</version>
  22.       <scope>test</scope>
  23.     </dependency>
  24.     <dependency>
  25.         <groupId>org.activiti</groupId>
  26.         <artifactId>activiti-engine</artifactId>
  27.         <version>5.14</version>
  28.     </dependency>
  29.         <dependency>
  30.         <groupId>org.activiti</groupId>
  31.         <artifactId>activiti-spring</artifactId>
  32.         <version>5.14</version>
  33.     </dependency>
  34.         <dependency>
  35.         <groupId>org.apache.httpcomponents</groupId>
  36.         <artifactId>httpclient</artifactId>
  37.         <version>4.4</version>
  38.     </dependency>
  39.     <dependency>
  40.         <groupId>org.apache.httpcomponents</groupId>
  41.         <artifactId>httpmime</artifactId>
  42.         <version>4.4.1</version>
  43.     </dependency>
  44.    
  45.    
  46.   </dependencies>
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement