easy-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.serlockholmes</groupId>
<artifactId>easy-framework</artifactId>
<version>0.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> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-framework</artifactId> <version>0.1.1</version> <packaging>pom</packaging> <modules> <module>easy-ioc</module> <module>easy-aop</module> <module>easy-core</module> <module>easy-netty</module> <module>easy-server</module> <module>easy-mvc</module> <module>easy-jdbc</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-aop</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-ioc</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-mvc</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-core</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-netty</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-jdbc</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.github.serlockholmes</groupId> <artifactId>easy-server</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>5.0.0.Alpha2</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.47</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.2</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.2.5</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.9</version> </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <version>2.1.0</version> </dependency> </dependencies> </dependencyManagement> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <!--写你自己的,这只是个例子 --> <scm> <url>https://github.com/SerlockHolmes/easyframework</url> <connection>https://github.com/SerlockHolmes/easyframework.git</connection> <developerConnection>https://github.com/SerlockHolmes/easyframework.git</developerConnection> </scm> <!--写你自己的,这只是个例子 --> <developers> <developer> <name>SherlockHolmes</name> <email>1784955689@qq.com</email> <url>https://github.com/SerlockHolmes/easyframework</url> </developer> </developers> <distributionManagement> <snapshotRepository> <!-- 这个id需要在setting.xml中设置 --> <id>oss</id> <name>OSS Snapshots Repository</name> <!-- 这里的url就是Issue中回复的snapshots 的repo地址 --> <url> https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>oss</id> <name>OSS Staging Repository</name> <!-- 这里的url就是Issue中回复的staging 的repo地址 --> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>