Guest User

Untitled

a guest
May 4th, 2020
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.53 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <parent>
  6.         <groupId>org.springframework.boot</groupId>
  7.         <artifactId>spring-boot-starter-parent</artifactId>
  8.         <version>2.2.6.RELEASE</version>
  9.         <relativePath/> <!-- lookup parent from repository -->
  10.     </parent>
  11.     <groupId>it.anas.test</groupId>
  12.     <artifactId>testingLoader</artifactId>
  13.     <version>0.0.1</version>
  14.     <name>testingLoader</name>
  15.     <description>Test Console Back-End</description>
  16.     <packaging>war</packaging>
  17.  
  18.     <properties>
  19.         <java.version>1.8</java.version>
  20.          <maven.compiler.source>1.8</maven.compiler.source>
  21.          <maven.compiler.target>1.8</maven.compiler.target>
  22.     </properties>
  23.  
  24.     <dependencies>
  25.         <dependency>
  26.             <groupId>org.springframework.boot</groupId>
  27.             <artifactId>spring-boot-starter</artifactId>
  28.         </dependency>
  29.  
  30.         <dependency>
  31.             <groupId>org.projectlombok</groupId>
  32.             <artifactId>lombok</artifactId>
  33.             <scope>provided</scope>
  34.         </dependency>
  35.        
  36.         <dependency>
  37.             <groupId>org.springframework.boot</groupId>
  38.             <artifactId>spring-boot-starter-web</artifactId>
  39.         </dependency>
  40.        
  41.         <dependency>
  42.             <groupId>commons-io</groupId>
  43.             <artifactId>commons-io</artifactId>
  44.             <version>2.5</version>
  45.         </dependency>
  46.  
  47.  
  48.         <!-- PER JAR IMPORTATI
  49.         <dependency>
  50.            <groupId>io.rest-assured</groupId>
  51.            <artifactId>rest-assured</artifactId>
  52.            
  53.        </dependency>
  54.        <dependency>
  55.            <groupId>io.rest-assured</groupId>
  56.            <artifactId>json-schema-validator</artifactId>
  57.            
  58.        </dependency>
  59.  
  60.        <dependency>
  61.            <groupId>org.junit.jupiter</groupId>
  62.            <artifactId>junit-jupiter-engine</artifactId>
  63.            
  64.        </dependency>
  65.        
  66.        <dependency>
  67.            <groupId>org.slf4j</groupId>
  68.            <artifactId>slf4j-jdk14</artifactId>
  69.            
  70.        </dependency>
  71.        
  72.  
  73.         <!-- JUNIT -->
  74.         <dependency>
  75.             <groupId>org.junit.jupiter</groupId>
  76.             <artifactId>junit-jupiter</artifactId>
  77.         </dependency>
  78.         <dependency>
  79.             <groupId>org.junit.platform</groupId>
  80.             <artifactId>junit-platform-launcher</artifactId>
  81.     </dependency>
  82.        
  83.     </dependencies>
  84.     <build>
  85.         <finalName>testingLoader</finalName>
  86.         <plugins>
  87.        
  88.             <plugin>
  89.                 <groupId>org.springframework.boot</groupId>
  90.                 <artifactId>spring-boot-maven-plugin</artifactId>
  91.                
  92.                 <executions>
  93.                     <execution>
  94.                         <goals>
  95.                             <goal>build-info</goal>
  96.                         </goals>
  97.                         <configuration>
  98.                             <additionalProperties>
  99.                                 <encoding.source>${project.build.sourceEncoding}</encoding.source>
  100.                                 <encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting>
  101.                                 <java.source>${java.version}</java.source>
  102.                                 <java.target>${java.version}</java.target>
  103.                             </additionalProperties>
  104.                         </configuration>
  105.                     </execution>
  106.                 </executions>
  107.             </plugin>
  108.            
  109.             <plugin>
  110.                 <artifactId>maven-surefire-plugin</artifactId>
  111.                 <version>2.22.2</version>
  112.             </plugin>
  113.         </plugins>
  114.     </build>
  115.  
  116. </project>
Add Comment
Please, Sign In to add comment