autumn-rest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.imaq</groupId> <artifactId>autumn-rest</artifactId> <version>2020.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>cn.imaq</groupId> <artifactId>autumn-rest</artifactId> <version>2020.10</version> <name>autumn-rest</name> <description>MVC-style Web framework for building RESTful applications</description> <url>https://github.com/DeepAQ/Autumn</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>DeepAQ</id> <name>DeepAQ</name> <email>noreply@aq741.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/DeepAQ/Autumn.git</connection> <developerConnection>scm:git:https://github.com:DeepAQ/Autumn.git</developerConnection> <url>https://github.com/DeepAQ/Autumn</url> </scm> <dependencies> <dependency> <groupId>cn.imaq</groupId> <artifactId>autumn-core</artifactId> <version>2020.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.26</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.8</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>test</scope> </dependency> </dependencies> </project>