maifeeulasad

pom.xml - https://stackoverflow.com/questions/58674516/sprin

Nov 2nd, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.56 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.0.RELEASE</version>
  9.         <relativePath/> <!-- lookup parent from repository -->
  10.     </parent>
  11.     <groupId>com.mua</groupId>
  12.     <artifactId>scraper</artifactId>
  13.     <version>0.0.1-SNAPSHOT</version>
  14.     <name>scraper</name>
  15.     <description>Demo project for Spring Boot</description>
  16.  
  17.  
  18.     <properties>
  19.         <java.version>1.8</java.version>
  20.         <log4j.version>1.2.17</log4j.version>
  21.     </properties>
  22.  
  23.  
  24.  
  25.     <dependencies>
  26.  
  27.  
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-devtools</artifactId>
  31.             <optional>true</optional>
  32.         </dependency>
  33.  
  34.         <dependency>
  35.             <groupId>org.springframework.boot</groupId>
  36.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  37.         </dependency>
  38.  
  39.         <dependency>
  40.             <groupId>org.springframework.boot</groupId>
  41.             <artifactId>spring-boot-starter-web-services</artifactId>
  42.         </dependency>
  43.  
  44.         <dependency>
  45.             <groupId>com.h2database</groupId>
  46.             <artifactId>h2</artifactId>
  47.             <scope>runtime</scope>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>org.projectlombok</groupId>
  51.             <artifactId>lombok</artifactId>
  52.             <optional>true</optional>
  53.         </dependency>
  54.         <dependency>
  55.             <groupId>org.springframework.boot</groupId>
  56.             <artifactId>spring-boot-starter-test</artifactId>
  57.             <scope>test</scope>
  58.         </dependency>
  59.  
  60.  
  61.         <dependency>
  62.             <groupId>org.springframework.boot</groupId>
  63.             <artifactId>spring-boot-starter-security</artifactId>
  64.         </dependency>
  65.         <dependency>
  66.             <groupId>org.springframework.security</groupId>
  67.             <artifactId>spring-security-oauth2-client</artifactId>
  68.         </dependency>
  69.         <dependency>
  70.             <groupId>org.springframework.boot</groupId>
  71.             <artifactId>spring-security-oauth2-jose</artifactId>
  72.         </dependency>
  73.  
  74.  
  75.  
  76.         <dependency>
  77.             <groupId>log4j</groupId>
  78.             <artifactId>log4j</artifactId>
  79.             <version>${log4j.version}</version>
  80.         </dependency>
  81.  
  82.         <dependency>
  83.             <groupId>com.fasterxml.jackson.core</groupId>
  84.             <artifactId>jackson-databind</artifactId>
  85.         </dependency>
  86.  
  87.  
  88.     </dependencies>
  89.  
  90.     <build>
  91.         <plugins>
  92.             <plugin>
  93.                 <groupId>org.springframework.boot</groupId>
  94.                 <artifactId>spring-boot-maven-plugin</artifactId>
  95.             </plugin>
  96.         </plugins>
  97.     </build>
  98.  
  99. </project>
Add Comment
Please, Sign In to add comment