feat-cloud-aot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tech.smartboot.feat</groupId>
<artifactId>feat-cloud-aot</artifactId>
<version>2.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) [2024] smartboot [zhengjunweimail@163.com]
~
~ 企业用户未经smartboot组织特别许可,需遵循Apache-2.0开源协议合理合法使用本项目。
~
~ Enterprise users are required to use this project reasonably
~ and legally in accordance with the Apache-2.0 open source agreement
~ without special permission from the smartboot organization.
-->
<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>
<parent>
<groupId>tech.smartboot.feat</groupId>
<artifactId>feat-parent</artifactId>
<version>2.1.0</version>
</parent>
<name>Feat Cloud AOT</name>
<description>
This module is used to provide AOT compilation capabilities for the Feat Cloud module. When using it, it is recommended to set the scope of this module to provided in pom.xml to reduce the size of the finally generated jar package.
</description>
<artifactId>feat-cloud-aot</artifactId>
<dependencies>
<dependency>
<groupId>tech.smartboot.feat</groupId>
<artifactId>feat-cloud</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>tech.smartboot</groupId>
<artifactId>redisun</artifactId>
<version>1.4.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>io.github.smartboot.socket</groupId>
<artifactId>aio-pro</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>