ajaxjs-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-framework</artifactId> <version>1.2.2</version> </dependency>
<?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> <parent> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-parent</artifactId> <version>1.33</version> <relativePath/> </parent> <artifactId>ajaxjs-framework</artifactId> <name>aj-framework</name> <version>1.2.2</version> <packaging>jar</packaging> <description>Lightweight Java Web Framework</description> <url>https://aj-docs.ajaxjs.com/</url> <scm> <url>https://github.com/lightweight-component/aj-framework</url> <connection>scm:git:https://github.com/lightweight-component/aj-framework.git</connection> </scm> <issueManagement> <system>Github Issues</system> <url>https://github.com/lightweight-component/aj-framework/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.ajaxjs</groupId> <artifactId>sqlman</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>com.ajaxjs</groupId> <artifactId>aj-security</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jdbc</artifactId> <scope>provided</scope> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> </dependency> <!-- Spring 测试 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency> </dependencies> </project>