pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.ademicon</groupId>
  7. <artifactId>email</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <name>Fluig API: email</name>
  11. <description>API de Envio de E-mail [O projeto foi gerado pelo arquétipo Maven 'fluig-archetype-1.0-SNAPSHOT']</description>
  12. <licenses>
  13. <license>
  14. <name>UNLICENSED</name>
  15. </license>
  16. </licenses>
  17. <properties>
  18. <fluig.version>1.8.1</fluig.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.report.sourceEncoding>UTF-8</project.report.sourceEncoding>
  21. <maven.compiler.release>8</maven.compiler.release>
  22. <jakartaee-api.version>8.0.0</jakartaee-api.version>
  23. <compiler-plugin.version>3.11.0</compiler-plugin.version>
  24. <war-plugin.version>3.3.2</war-plugin.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.fluig</groupId>
  29. <artifactId>foundation-security-authentication-saml</artifactId>
  30. <scope>compile</scope>
  31. <version>1.5.13</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.activation</groupId>
  35. <artifactId>activation</artifactId>
  36. <version>1.1.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fluig</groupId>
  40. <artifactId>fluig-sdk-api</artifactId>
  41. <version>${fluig.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fluig</groupId>
  45. <artifactId>fluig-sdk-common</artifactId>
  46. <version>${fluig.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>jakarta.platform</groupId>
  50. <artifactId>jakarta.jakartaee-api</artifactId>
  51. <version>${jakartaee-api.version}</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>junit</groupId>
  56. <artifactId>junit</artifactId>
  57. <version>4.11</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.18.30</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.swagger.core.v3</groupId>
  68. <artifactId>swagger-annotations</artifactId>
  69. <version>2.2.20</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-core</artifactId>
  74. <version>2.16.1</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.fasterxml.jackson.core</groupId>
  79. <artifactId>jackson-databind</artifactId>
  80. <version>2.16.1</version>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-dbutils</groupId>
  85. <artifactId>commons-dbutils</artifactId>
  86. <version>1.8.1</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <finalName>email</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>${compiler-plugin.version}</version>
  97. </plugin>
  98. <plugin>
  99. <artifactId>maven-war-plugin</artifactId>
  100. <version>${war-plugin.version}</version>
  101. <configuration>
  102. <failOnMissingWebXml>false</failOnMissingWebXml>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. <repositories>
  108. <repository>
  109. <id>nexus</id>
  110. <name>Fluig Nexus Repository</name>
  111. <url>https://nexus.fluig.com/repository/fluig/</url>
  112. </repository>
  113. </repositories>
  114. </project>