Advertisement
tadeuespindola

juliano-lopes-pom-xml.jdev

Apr 4th, 2023
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.96 KB | Help | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3.     xmlns="http://maven.apache.org/POM/4.0.0"
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  6.    
  7.     <modelVersion>4.0.0</modelVersion>
  8.    
  9.     <parent>
  10.         <groupId>org.springframework.boot</groupId>
  11.         <artifactId>spring-boot-starter-parent</artifactId>
  12.         <version>2.1.2.RELEASE</version>
  13.         <relativePath/> <!-- lookup parent from repository -->
  14.     </parent>
  15.    
  16.     <groupId>br.com.julopes</groupId>
  17.     <artifactId>continuedesenvolvendo</artifactId>
  18.     <version>0.0.1-SNAPSHOT</version>
  19.    
  20.     <packaging>jar</packaging>
  21.    
  22.     <name>continuedesenvolvendo</name>
  23.     <description>Demo project for Spring Boot</description>
  24.    
  25.     <properties>
  26.         <java.version>17</java.version>
  27.     </properties>
  28.    
  29.     <dependencies>
  30.  
  31.         <dependency>
  32.             <groupId>io.jsonwebtoken</groupId>
  33.             <artifactId>jjwt</artifactId>
  34.             <version>0.9.1</version>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>org.springframework.security</groupId>
  39.             <artifactId>spring-security-config</artifactId>
  40.             <version>6.0.2</version>
  41.         </dependency>
  42.  
  43.         <dependency>
  44.             <groupId>org.springframework.security</groupId>
  45.             <artifactId>spring-security-web</artifactId>
  46.             <version>6.0.2</version>
  47.         </dependency>
  48.        
  49.         <dependency>
  50.             <groupId>org.springframework.boot</groupId>
  51.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  52.         </dependency>
  53.        
  54.         <dependency>
  55.             <groupId>org.springframework.boot</groupId>
  56.             <artifactId>spring-boot-starter-jdbc</artifactId>
  57.             <version>2.0.3.RELEASE</version>
  58.         </dependency>
  59.        
  60.         <dependency>
  61.             <groupId>org.springframework.boot</groupId>
  62.             <artifactId>spring-boot-starter-data-rest</artifactId>
  63.         </dependency>
  64.  
  65.         <dependency>
  66.             <groupId>org.springframework.boot</groupId>
  67.             <artifactId>spring-boot-starter-web</artifactId>
  68.         </dependency>
  69.  
  70.         <dependency>
  71.             <groupId>org.springframework.boot</groupId>
  72.             <artifactId>spring-boot-devtools</artifactId>
  73.             <scope>runtime</scope>
  74.             <optional>true</optional>
  75.         </dependency>
  76.        
  77.         <dependency>
  78.             <groupId>com.mysql</groupId>
  79.             <artifactId>mysql-connector-j</artifactId>
  80.             <version>8.0.32</version>
  81.             <scope>runtime</scope>
  82.         </dependency>
  83.        
  84.         <dependency>
  85.             <groupId>org.springframework.boot</groupId>
  86.             <artifactId>spring-boot-starter-tomcat</artifactId>
  87.             <scope>provided</scope>
  88.         </dependency>
  89.        
  90.         <dependency>
  91.             <groupId>org.springframework.boot</groupId>
  92.             <artifactId>spring-boot-starter-test</artifactId>
  93.             <scope>test</scope>
  94.         </dependency>
  95.    
  96.        <dependency>
  97.          <groupId>org.springframework.security</groupId>
  98.          <artifactId>spring-security-config</artifactId>
  99.          <version>5.1.6.RELEASE</version>
  100.        </dependency>
  101.     </dependencies>
  102.  
  103.     <build>
  104.         <plugins>
  105.             <plugin>
  106.                 <groupId>org.springframework.boot</groupId>
  107.                 <artifactId>spring-boot-maven-plugin</artifactId>
  108.             </plugin>
  109.         </plugins>
  110.     </build>
  111.  
  112. </project>
  113.  
Tags: Java pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement