Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.65 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>testLoad</artifactId>
  13.     <version>1.1.1-gv</version>
  14.     <name>testLoad</name>
  15.     <description>Demo project for Spring Boot</description>
  16.  
  17.     <properties>
  18.         <java.version>1.8</java.version>
  19.          <maven.compiler.source>1.8</maven.compiler.source>
  20.          <maven.compiler.target>1.8</maven.compiler.target>
  21.     </properties>
  22.  
  23.     <dependencies>
  24.         <dependency>
  25.             <groupId>org.springframework.boot</groupId>
  26.             <artifactId>spring-boot-starter</artifactId>
  27.         </dependency>
  28.  
  29.         <dependency>
  30.             <groupId>org.projectlombok</groupId>
  31.             <artifactId>lombok</artifactId>
  32.             <scope>provided</scope>
  33.         </dependency>
  34.        
  35.         <dependency>
  36.             <groupId>org.springframework.boot</groupId>
  37.             <artifactId>spring-boot-starter-web</artifactId>
  38.         </dependency>
  39.        
  40.         <dependency>
  41.             <groupId>commons-io</groupId>
  42.             <artifactId>commons-io</artifactId>
  43.             <version>2.5</version>
  44.         </dependency>
  45.        
  46.         <!-- JUNIT -->
  47.         <dependency>
  48.             <groupId>org.junit.jupiter</groupId>
  49.             <artifactId>junit-jupiter</artifactId>
  50.         </dependency>
  51.         <dependency>
  52.             <groupId>org.junit.platform</groupId>
  53.             <artifactId>junit-platform-launcher</artifactId>
  54.     </dependency>
  55.        
  56.     </dependencies>
  57.     <build>
  58.         <plugins>
  59.             <plugin>
  60.                 <groupId>org.springframework.boot</groupId>
  61.                 <artifactId>spring-boot-maven-plugin</artifactId>
  62.                
  63.                 <executions>
  64.                     <execution>
  65.                         <goals>
  66.                             <goal>build-info</goal>
  67.                         </goals>
  68.                         <configuration>
  69.                             <additionalProperties>
  70.                                 <encoding.source>${project.build.sourceEncoding}</encoding.source>
  71.                                 <encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting>
  72.                                 <java.source>${java.version}</java.source>
  73.                                 <java.target>${java.version}</java.target>
  74.                             </additionalProperties>
  75.                         </configuration>
  76.                     </execution>
  77.                 </executions>
  78.             </plugin>
  79.            
  80.         </plugins>
  81.     </build>
  82.  
  83. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement