Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.66 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>MilandrCollect</groupId>
  6.     <artifactId>java-dcs</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.  
  10.     <name>java-dcs</name>
  11.     <url>http://maven.apache.org</url>
  12.     <properties>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.         <java.version>1.8</java.version>
  15.         <spring-version>4.3.1.RELEASE</spring-version>
  16.         <skip.unit.tests>false</skip.unit.tests>
  17.         <skip.integration.tests>true</skip.integration.tests>
  18.         <junit.jupiter.version>5.0.0</junit.jupiter.version>
  19.         <junit.version>5.0.0</junit.version>
  20.         <junit.vintage.version>4.12.0-M2</junit.vintage.version>
  21.         <junit.platform.version>1.0.0-M2</junit.platform.version>
  22.  
  23.     </properties>
  24.  
  25.     <build>
  26.         <plugins>
  27.             <plugin>
  28.                 <artifactId>maven-compiler-plugin</artifactId>
  29.                 <version>3.6.1</version>
  30.                 <configuration>
  31.                     <source>1.8</source>
  32.                     <target>1.8</target>
  33.                 </configuration>
  34.             </plugin>
  35.             <plugin>
  36.                 <artifactId>maven-surefire-plugin</artifactId>
  37.                 <version>2.19</version>
  38.                 <dependencies>
  39.                     <dependency>
  40.                         <groupId>org.junit.platform</groupId>
  41.                         <artifactId>junit-platform-surefire-provider</artifactId>
  42.                         <version>${junit.platform.version}</version>
  43.                     </dependency>
  44.                 </dependencies>
  45.             </plugin>
  46.             <plugin>
  47.                 <groupId>org.springframework.boot</groupId>
  48.                 <artifactId>spring-boot-maven-plugin</artifactId>
  49.             </plugin>
  50.         </plugins>
  51.     </build>
  52.  
  53.  
  54.     <dependencies>
  55.         <dependency>
  56.             <groupId>org.junit.platform</groupId>
  57.             <artifactId>junit-platform-launcher</artifactId>
  58.             <version>1.0.0-M6</version>
  59.             <scope>test</scope>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>org.junit.jupiter</groupId>
  63.             <artifactId>junit-jupiter-api</artifactId>
  64.             <version>${junit.version}</version>
  65.             <scope>test</scope>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>org.junit.jupiter</groupId>
  69.             <artifactId>junit-jupiter-engine</artifactId>
  70.             <version>5.0.0-M6</version>
  71.             <scope>test</scope>
  72.         </dependency>
  73.         <dependency>
  74.             <groupId>org.junit.vintage</groupId>
  75.             <artifactId>junit-vintage-engine</artifactId>
  76.             <version>4.12.0-M6</version>
  77.             <scope>test</scope>
  78.         </dependency>
  79.         <dependency>
  80.             <groupId>org.junit.jupiter</groupId>
  81.             <artifactId>junit-jupiter-params</artifactId>
  82.             <version>${junit.version}</version>
  83.             <scope>test</scope>
  84.         </dependency>
  85.         <dependency>
  86.             <groupId>org.springframework</groupId>
  87.             <artifactId>spring-test</artifactId>
  88.             <version>${spring-version}</version>
  89.             <scope>test</scope>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>org.springframework</groupId>
  93.             <artifactId>spring-beans</artifactId>
  94.             <version>${spring-version}</version>
  95.         </dependency>
  96.         <dependency>
  97.             <groupId>org.springframework</groupId>
  98.             <artifactId>spring-context</artifactId>
  99.             <version>${spring-version}</version>
  100.         </dependency>
  101.  
  102.         <dependency>
  103.             <groupId>org.springframework.boot</groupId>
  104.             <artifactId>spring-boot-starter-web</artifactId>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>org.springframework.boot</groupId>
  108.             <artifactId>spring-boot-starter-test</artifactId>
  109.             <scope>test</scope>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>com.jayway.jsonpath</groupId>
  113.             <artifactId>json-path</artifactId>
  114.             <scope>test</scope>
  115.         </dependency>
  116.         <dependency>
  117.         <groupId>org.springframework.boot</groupId>
  118.         <artifactId>spring-boot-starter-tomcat</artifactId>
  119.         <scope>provided</scope>
  120.     </dependency>
  121. <!--SpringFox dependencies -->
  122.         <dependency>
  123.             <groupId>io.springfox</groupId>
  124.             <artifactId>springfox-swagger2</artifactId>
  125.             <version>2.6.1</version>
  126.         </dependency>
  127.         <dependency>
  128.             <groupId>io.springfox</groupId>
  129.             <artifactId>springfox-swagger-ui</artifactId>
  130.             <version>2.6.1</version>
  131.         </dependency>
  132.  
  133.         <dependency>
  134.             <groupId>com.fasterxml.jackson.datatype</groupId>
  135.             <artifactId>jackson-datatype-joda</artifactId>
  136.         </dependency>
  137.         <dependency>
  138.             <groupId>joda-time</groupId>
  139.             <artifactId>joda-time</artifactId>
  140.         </dependency>
  141.     <!-- Bean Validation API support -->
  142.     <dependency>
  143.         <groupId>javax.validation</groupId>
  144.         <artifactId>validation-api</artifactId>
  145.         <version>1.1.0.Final</version>
  146.         <scope>provided</scope>
  147.     </dependency>
  148.     <dependency>
  149.         <groupId>org.apache.commons</groupId>
  150.         <artifactId>commons-lang3</artifactId>
  151.         <version>3.6</version>
  152.     </dependency>
  153.  
  154.         <dependency>
  155.             <groupId>junit</groupId>
  156.             <artifactId>junit</artifactId>
  157.             <scope>test</scope>
  158.         </dependency>
  159.         <dependency>
  160.             <groupId>junit</groupId>
  161.             <artifactId>junit</artifactId>
  162.             <version>4.12</version>
  163.             <scope>test</scope>
  164.         </dependency>
  165.     </dependencies>
  166.     <parent>
  167.         <groupId>org.springframework.boot</groupId>
  168.         <artifactId>spring-boot-starter-parent</artifactId>
  169.         <version>1.5.7.RELEASE</version>
  170.     </parent>
  171. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement