94 Star 223 Fork 76

smartboot / smart-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.10 KB
一键复制 编辑 原始数据 按行查看 历史
三刀 提交于 2017-01-06 10:36 . smart sosa升级
<?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>
<groupId>org.smartboot</groupId>
<artifactId>smart-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<sosa.version>1.0.4</sosa.version>
<cglib.version>3.2.4</cglib.version>
<commons.dbcp2>2.1.1</commons.dbcp2>
<mysql.version>5.1.40</mysql.version>
<mybatis.version>3.4.1</mybatis.version>
<mybatis.spring.version>1.3.0</mybatis.spring.version>
</properties>
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
</parent>
<dependencyManagement>
<dependencies>
<!-- require dependency:begin -->
<!-- Sosa -->
<dependency>
<groupId>org.smartboot.sosa</groupId>
<artifactId>smartboot-sosa-core</artifactId>
<version>${sosa.version}</version>
</dependency>
<!-- smartboot自身模块 -->
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-assembly</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-dal</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-component</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-service-integration</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-service-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.smartboot</groupId>
<artifactId>smart-service-facade</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>${cglib.version}</version>
</dependency>
<!-- require dependency:end -->
<!-- option dependency:begin -->
<!-- 数据库 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis.spring.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>${commons.dbcp2}</version>
</dependency>
<!-- option dependency:end -->
</dependencies>
</dependencyManagement>
<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>
<repositories>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<modules>
<module>smart-assembly</module>
<module>smart-dal</module>
<module>smart-component</module>
<module>smart-service-facade</module>
<module>smart-service-integration</module>
<module>smart-service-impl</module>
<module>smart-shared</module>
<module>smart-restful</module>
</modules>
</project>
Java
1
https://gitee.com/smartboot/smart-boot.git
git@gitee.com:smartboot/smart-boot.git
smartboot
smart-boot
smart-boot
master

搜索帮助