aj-lightweight-springboot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ajaxjs</groupId> <artifactId>aj-lightweight-springboot</artifactId> <version>1.1</version> </dependency>
<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> <artifactId>aj-lightweight-springboot</artifactId> <description>Based on SpringMVC, SpringBoot alike</description> <version>1.1</version> <packaging>jar</packaging> <parent> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-parent</artifactId> <version>1.17</version> <relativePath/> </parent> <url>https://github.com/lightweight-component/aj-lightweight-springboot</url> <scm> <url>https://github.com/lightweight-component/aj-lightweight-springboot</url> <connection>scm:git:https://github.com/lightweight-component/aj-lightweight-springboot.git</connection> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/lightweight-component/aj-lightweight-springboot/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-util</artifactId> <version>1.1.5</version> </dependency> <!-- YAML 配置文件。更新不了 --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.33</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> <scope>provided</scope> </dependency> <!-- IDEA 下面没 Tomcat,FOR JAR 启动 --> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> <version>${tomcat.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <version>${tomcat.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>