123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.ademicon</groupId>
- <artifactId>email</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>war</packaging>
- <name>Fluig API: email</name>
- <description>API de Envio de E-mail [O projeto foi gerado pelo arquétipo Maven 'fluig-archetype-1.0-SNAPSHOT']</description>
- <licenses>
- <license>
- <name>UNLICENSED</name>
- </license>
- </licenses>
- <properties>
- <fluig.version>1.8.1</fluig.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.report.sourceEncoding>UTF-8</project.report.sourceEncoding>
- <maven.compiler.release>8</maven.compiler.release>
- <jakartaee-api.version>8.0.0</jakartaee-api.version>
- <compiler-plugin.version>3.11.0</compiler-plugin.version>
- <war-plugin.version>3.3.2</war-plugin.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.fluig</groupId>
- <artifactId>foundation-security-authentication-saml</artifactId>
- <scope>compile</scope>
- <version>1.5.13</version>
- </dependency>
-
- <dependency>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- <version>1.1.1</version>
- </dependency>
-
- <dependency>
- <groupId>com.fluig</groupId>
- <artifactId>fluig-sdk-api</artifactId>
- <version>${fluig.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fluig</groupId>
- <artifactId>fluig-sdk-common</artifactId>
- <version>${fluig.version}</version>
- </dependency>
- <dependency>
- <groupId>jakarta.platform</groupId>
- <artifactId>jakarta.jakartaee-api</artifactId>
- <version>${jakartaee-api.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.30</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.swagger.core.v3</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>2.2.20</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>2.16.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.16.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-dbutils</groupId>
- <artifactId>commons-dbutils</artifactId>
- <version>1.8.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>email</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${compiler-plugin.version}</version>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>${war-plugin.version}</version>
- <configuration>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>nexus</id>
- <name>Fluig Nexus Repository</name>
- <url>https://nexus.fluig.com/repository/fluig/</url>
- </repository>
- </repositories>
- </project>
|