Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>stivlo</groupId>
  7.     <artifactId>trading</artifactId>
  8.     <version>1.0-SNAPSHOT</version>
  9.  
  10.     <parent>
  11.         <groupId>org.springframework.boot</groupId>
  12.         <artifactId>spring-boot-starter-parent</artifactId>
  13.         <version>1.2.2.RELEASE</version>
  14.     </parent>
  15.  
  16.     <properties>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.  
  20.     <dependencies>
  21.         <dependency>
  22.             <groupId>org.springframework.boot</groupId>
  23.             <artifactId>spring-boot-starter-web</artifactId>
  24.             <exclusions>
  25.                 <exclusion>
  26.                     <groupId>org.springframework.boot</groupId>
  27.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  28.                 </exclusion>
  29.             </exclusions>
  30.         </dependency>
  31.  
  32.         <dependency>
  33.             <groupId>org.springframework.boot</groupId>
  34.             <artifactId>spring-boot-starter-jetty</artifactId>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>org.springframework.boot</groupId>
  39.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  40.         </dependency>
  41.  
  42.         <dependency>
  43.             <groupId>org.springframework.boot</groupId>
  44.             <artifactId>spring-boot-starter-freemarker</artifactId>
  45.         </dependency>
  46.  
  47.         <dependency>
  48.             <groupId>com.google.guava</groupId>
  49.             <artifactId>guava</artifactId>
  50.             <version>18.0</version>
  51.         </dependency>
  52.  
  53.         <dependency>
  54.             <groupId>mysql</groupId>
  55.             <artifactId>mysql-connector-java</artifactId>
  56.             <version>5.1.34</version>
  57.         </dependency>
  58.  
  59.         <dependency>
  60.             <groupId>org.liquibase</groupId>
  61.             <artifactId>liquibase-core</artifactId>
  62.             <version>3.3.2</version>
  63.         </dependency>
  64.  
  65.         <dependency>
  66.             <groupId>net.sf.opencsv</groupId>
  67.             <artifactId>opencsv</artifactId>
  68.             <version>2.3</version>
  69.         </dependency>
  70.  
  71.         <dependency>
  72.             <groupId>eu.verdelhan</groupId>
  73.             <artifactId>ta4j</artifactId>
  74.             <version>0.6</version>
  75.         </dependency>
  76.  
  77.         <dependency>
  78.             <groupId>org.jfree</groupId>
  79.             <artifactId>jfreechart</artifactId>
  80.             <version>1.0.19</version>
  81.         </dependency>
  82.  
  83.         <dependency>
  84.             <groupId>joda-time</groupId>
  85.             <artifactId>joda-time</artifactId>
  86.             <version>2.7</version>
  87.         </dependency>
  88.  
  89.         <dependency>
  90.             <groupId>commons-lang</groupId>
  91.             <artifactId>commons-lang</artifactId>
  92.             <version>2.6</version>
  93.         </dependency>
  94.  
  95.         <dependency>
  96.             <groupId>com.lightstreamer</groupId>
  97.             <artifactId>lightstreamer</artifactId>
  98.             <version>1.0</version>
  99.         </dependency>
  100.  
  101.         <dependency>
  102.             <groupId>org.apache.httpcomponents</groupId>
  103.             <artifactId>httpclient</artifactId>
  104.             <version>4.4.1</version>
  105.         </dependency>
  106.  
  107.         <dependency>
  108.             <groupId>junit</groupId>
  109.             <artifactId>junit</artifactId>
  110.             <version>4.12</version>
  111.             <scope>test</scope>
  112.         </dependency>
  113.  
  114.         <dependency>
  115.             <groupId>org.hamcrest</groupId>
  116.             <artifactId>hamcrest-all</artifactId>
  117.             <version>1.3</version>
  118.             <scope>test</scope>
  119.         </dependency>
  120.     </dependencies>
  121.  
  122.     <build>
  123.         <plugins>
  124.  
  125.             <plugin>
  126.                 <groupId>org.apache.maven.plugins</groupId>
  127.                 <artifactId>maven-compiler-plugin</artifactId>
  128.                 <version>3.3</version>
  129.                 <configuration>
  130.                     <source>1.7</source>
  131.                     <target>1.7</target>
  132.                 </configuration>
  133.             </plugin>
  134.  
  135.             <plugin>
  136.                 <groupId>org.apache.maven.plugins</groupId>
  137.                 <artifactId>maven-surefire-plugin</artifactId>
  138.                 <version>2.18.1</version>
  139.                 <dependencies>
  140.                     <dependency>
  141.                         <groupId>org.apache.maven.surefire</groupId>
  142.                         <artifactId>surefire-junit47</artifactId>
  143.                         <version>2.18</version>
  144.                     </dependency>
  145.                 </dependencies>
  146.                 <configuration>
  147.                     <argLine>-Xms256m -Xmx256m</argLine>
  148.                     <printSummary>false</printSummary>
  149.                 </configuration>
  150.             </plugin>
  151.  
  152.             <plugin>
  153.                 <groupId>org.apache.maven.plugins</groupId>
  154.                 <artifactId>maven-failsafe-plugin</artifactId>
  155.                 <version>2.18.1</version>
  156.                 <configuration>
  157.                     <argLine>-Xms256m -Xmx256m</argLine>
  158.                 </configuration>
  159.                 <executions>
  160.                     <execution>
  161.                         <goals>
  162.                             <goal>integration-test</goal>
  163.                             <goal>verify</goal>
  164.                         </goals>
  165.                     </execution>
  166.                 </executions>
  167.             </plugin>
  168.  
  169.            
  170.         </plugins>
  171.     </build>
  172.  
  173. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement