mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-12-06 05:37:34 +08:00
1a4174f2c5
change: 默认扫描org.nutz.boot.starter下的ioc注解 add: Banner使用info级别打印 add: 添加Slf4j日志适配器,默认走slf4j了 add: 添加ioc/目录,用户可自行添加额外的ioc json配置文件,例如文件上传的配置
49 lines
1.5 KiB
XML
49 lines
1.5 KiB
XML
<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>org.nutz</groupId>
|
|
<artifactId>nutzboot-parent</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nutzboot-starter</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutz</artifactId>
|
|
<version>1.r.65-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>nutzcn-snapshots</id>
|
|
<name>NutzCN snapshot repository</name>
|
|
<url>https://jfrog.nutz.cn/artifactory/snapshots</url>
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
<id>sonatype-release-staging</id>
|
|
<name>Sonatype Nexus release repository</name>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project> |