11 Star 11 Fork 16

hsweb企业后台管理基础框架 / hsweb-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 6.14 KB
一键复制 编辑 原始数据 按行查看 历史
老周 提交于 2017-07-21 14:16 . change miniui license 2.2.2-SNAPSHOT
<?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.hsweb</groupId>
<artifactId>hsweb-demo</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.jdk>1.8</project.build.jdk>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<hsweb.version>2.2.2-SNAPSHOT</hsweb.version>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${project.build.jdk}</source>
<target>${project.build.jdk}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!--spring-boot插件,有了它才能执行 mvn spring-boot:run命令,以及mvn package 打可运行jar包-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.3.7.RELEASE</version>
<configuration>
<mainClass>org.hsweb.demo.Run</mainClass>
<layout>ZIP</layout>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!--druid 数据源-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.0.26</version>
</dependency>
<dependency>
<groupId>org.hsweb</groupId>
<artifactId>hsweb-expands-request</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<!--<dependency>-->
<!--<groupId>com.microsoft.sqlserver</groupId>-->
<!--<artifactId>sqljdbc4</artifactId>-->
<!--<version>4.0</version>-->
<!--</dependency>-->
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.192</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.fusesource</groupId>
<artifactId>sigar</artifactId>
<version>1.6.4</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--
ui模块,目前仅提供了一个ui实现
https://github.com/hs-web/hsweb-platform/tree/master/hsweb-platform-ui-miniui
-->
<dependency>
<groupId>org.hsweb</groupId>
<artifactId>hsweb-platform-ui-miniui</artifactId>
<version>2.2.2-SNAPSHOT</version>
</dependency>
<!--
hsweb 核心依赖
https://github.com/hs-web/hsweb-framework
-->
<dependency>
<groupId>org.hsweb</groupId>
<artifactId>hsweb-web-starter</artifactId>
</dependency>
<!--
1、动态数据源支持,如果不引入此依赖,动态数据源将无法使用。
2、配置application.yml -> hsweb.dynamic-datasource失效。
3、请自行配置数据源application.yml -> spring.datasource。
-->
<dependency>
<groupId>org.hsweb</groupId>
<artifactId>hsweb-web-datasource</artifactId>
</dependency>
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-redis</artifactId>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.springframework.session</groupId>-->
<!--<artifactId>spring-session-data-redis</artifactId>-->
<!--</dependency>-->
</dependencies>
<dependencyManagement>
<!--统一管理依赖-->
<dependencies>
<dependency>
<groupId>org.hsweb</groupId>
<artifactId>hsweb-framework</artifactId>
<version>${hsweb.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>hsweb-nexus</id>
<name>Nexus Repository</name>
<url>http://nexus.hsweb.me/content/groups/public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>hsweb-nexus</id>
<name>Nexus Repository</name>
<url>http://nexus.hsweb.me/content/groups/public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Java
1
https://gitee.com/hsweb/hsweb-demo.git
git@gitee.com:hsweb/hsweb-demo.git
hsweb
hsweb-demo
hsweb-demo
master

搜索帮助