Advertisement
tadeuespindola

GabrielEmailPom

Mar 17th, 2021
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6.     <modelVersion>4.0.0</modelVersion>
  7.  
  8.     <groupId>enviando-mail</groupId>
  9.     <artifactId>enviando-mail</artifactId>
  10.     <version>0.0.1-SNAPSHOT</version>
  11.     <packaging>jar</packaging>
  12.  
  13.     <name>enviando-mail</name>
  14.     <url>http://maven.apache.org</url>
  15.  
  16.     <properties>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.  
  20.     <dependencies>
  21.         <dependency>
  22.             <groupId>junit</groupId>
  23.             <artifactId>junit</artifactId>
  24.             <version>4.12</version>
  25.             <scope>test</scope>
  26.         </dependency>
  27.  
  28.         <dependency>
  29.             <groupId>com.sun.mail</groupId>
  30.             <artifactId>javax.mail</artifactId>
  31.             <version>1.6.2</version>
  32.         </dependency>
  33.        
  34.         <dependency>
  35.             <groupId>com.itextpdf</groupId>
  36.             <artifactId>itextpdf</artifactId>
  37.             <version>5.5.13.1</version>
  38.         </dependency>
  39.  
  40.     </dependencies>
  41.  
  42.     <build>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-compiler-plugin</artifactId>
  47.                 <version>3.7.0</version>
  48.                 <configuration>
  49.                     <source>8</source>
  50.                     <target>8</target>
  51.                 </configuration>
  52.             </plugin>
  53.         </plugins>
  54.     </build>
  55.  
  56. </project>
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement