modest-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.percychuang</groupId>
<artifactId>modest-core</artifactId>
<version>0.0.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">
<parent>
<groupId>com.github.percychuang</groupId>
<artifactId>modest-parent</artifactId>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>modest-core</artifactId>
<dependencies>
<!-- ================================================= -->
<!-- 所有的组件都是依懒与这个core来完成的 -->
<!-- 基于spring作为框架基础 -->
<!-- ================================================= -->
<dependency>
<groupId>${modest.group}</groupId>
<artifactId>modest-log</artifactId>
<version>${modest.version}</version>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>${aspectj.groupId}</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>${aspectj.groupId}</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<!-- ================================================= -->
<!-- 字节码编辑工具 -->
<!-- ================================================= -->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>
<!-- ================================================= -->
<!-- 集合工具类 -->
<!-- ================================================= -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
</dependency>
<!-- ================================================= -->
<!-- SERVLET -->
<!-- ================================================= -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- ================================================= -->
<!-- json 摘要 -->
<!-- ================================================= -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
</project>