|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>com.jun.plugin</groupId> |
| 6 | + <artifactId>jun_springboot_bizservice</artifactId> |
| 7 | + <version>1.0</version> |
| 8 | + |
| 9 | + <properties> |
| 10 | + <java.version>1.8</java.version> |
| 11 | + <mybatis-plus.version>3.4.0</mybatis-plus.version> |
| 12 | + <mybatis-plus-dynamic.version>2.5.5</mybatis-plus-dynamic.version> |
| 13 | + <ojdbc6.version>12.1.0.1-atlassian-hosted</ojdbc6.version> |
| 14 | + <sqlserver.version>4.0</sqlserver.version> |
| 15 | + <commons.lang.version>2.6</commons.lang.version> |
| 16 | + <commons.io.version>2.5</commons.io.version> |
| 17 | + <commons.configuration.version>1.10</commons.configuration.version> |
| 18 | + <velocity.version>1.7</velocity.version> |
| 19 | + <quartz.version>2.3.2</quartz.version> |
| 20 | + <shiro.version>1.4.0</shiro.version> |
| 21 | + <druid.version>1.1.10</druid.version> |
| 22 | + <fastjson.version>1.2.74</fastjson.version> |
| 23 | + <thymeleaf-shiro.version>2.0.0</thymeleaf-shiro.version> |
| 24 | + <knife4j.version>2.0.2</knife4j.version> |
| 25 | + <easy-captcha.version>1.6.2</easy-captcha.version> |
| 26 | + <plugin.version>1.0</plugin.version> |
| 27 | + </properties> |
| 28 | + |
| 29 | + |
| 30 | + <dependencyManagement> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-dependencies</artifactId> |
| 35 | + <version>2.1.6.RELEASE</version> |
| 36 | + <type>pom</type> |
| 37 | + <scope>import</scope> |
| 38 | + </dependency> |
| 39 | + </dependencies> |
| 40 | + </dependencyManagement> |
| 41 | + |
| 42 | + <dependencies> |
| 43 | + <!-- <dependency> |
| 44 | + <groupId>com.jun.plugin</groupId> |
| 45 | + <artifactId>jun_springboot_framework</artifactId> |
| 46 | + <version>${plugin.version}</version> |
| 47 | + </dependency> --> |
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>org.springframework.boot</groupId> |
| 51 | + <artifactId>spring-boot-starter-web</artifactId> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework.boot</groupId> |
| 56 | + <artifactId>spring-boot-starter-test</artifactId> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-aop</artifactId> |
| 63 | + </dependency> |
| 64 | + |
| 65 | + <!--数据源--> |
| 66 | + <dependency> |
| 67 | + <groupId>com.alibaba</groupId> |
| 68 | + <artifactId>druid-spring-boot-starter</artifactId> |
| 69 | + <version>${druid.version}</version> |
| 70 | + </dependency> |
| 71 | + <!--redis 依赖--> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework.boot</groupId> |
| 74 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <!--shiro 依赖--> |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.shiro</groupId> |
| 80 | + <artifactId>shiro-spring</artifactId> |
| 81 | + <version>${shiro.version}</version> |
| 82 | + </dependency> |
| 83 | + <!--lombok--> |
| 84 | + <dependency> |
| 85 | + <groupId>org.projectlombok</groupId> |
| 86 | + <artifactId>lombok</artifactId> |
| 87 | + </dependency> |
| 88 | + <!--fastJson--> |
| 89 | + <dependency> |
| 90 | + <groupId>com.alibaba</groupId> |
| 91 | + <artifactId>fastjson</artifactId> |
| 92 | + <version>${fastjson.version}</version> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <!--thymeleaf默认使用html5规则标签必须闭合等 使用次此包正常解析--> |
| 96 | + <dependency> |
| 97 | + <groupId>org.springframework.boot</groupId> |
| 98 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>com.github.theborakompanioni</groupId> |
| 102 | + <artifactId>thymeleaf-extras-shiro</artifactId> |
| 103 | + <version>${thymeleaf-shiro.version}</version> |
| 104 | + </dependency> |
| 105 | + <!--数据库持久化 及 插件依赖--> |
| 106 | + <dependency> |
| 107 | + <groupId>com.baomidou</groupId> |
| 108 | + <artifactId>dynamic-datasource-spring-boot-starter</artifactId> |
| 109 | + <version>${mybatis-plus-dynamic.version}</version> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>com.baomidou</groupId> |
| 113 | + <artifactId>mybatis-plus</artifactId> |
| 114 | + <version>${mybatis-plus.version}</version> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>com.baomidou</groupId> |
| 118 | + <artifactId>mybatis-plus-boot-starter</artifactId> |
| 119 | + <version>${mybatis-plus.version}</version> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>mysql</groupId> |
| 123 | + <artifactId>mysql-connector-java</artifactId> |
| 124 | + <scope>runtime</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>com.oracle</groupId> |
| 128 | + <artifactId>ojdbc6</artifactId> |
| 129 | + <version>${ojdbc6.version}</version> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>com.microsoft.sqlserver</groupId> |
| 133 | + <artifactId>sqljdbc4</artifactId> |
| 134 | + <version>${sqlserver.version}</version> |
| 135 | + <scope>runtime</scope> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>com.github.xiaoymin</groupId> |
| 139 | + <artifactId>knife4j-spring-boot-starter</artifactId> |
| 140 | + <version>${knife4j.version}</version> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>commons-lang</groupId> |
| 144 | + <artifactId>commons-lang</artifactId> |
| 145 | + <version>${commons.lang.version}</version> |
| 146 | + </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>commons-io</groupId> |
| 149 | + <artifactId>commons-io</artifactId> |
| 150 | + <version>${commons.io.version}</version> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>commons-configuration</groupId> |
| 154 | + <artifactId>commons-configuration</artifactId> |
| 155 | + <version>${commons.configuration.version}</version> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <artifactId>velocity</artifactId> |
| 159 | + <groupId>org.apache.velocity</groupId> |
| 160 | + <version>${velocity.version}</version> |
| 161 | + </dependency> |
| 162 | + <dependency> |
| 163 | + <groupId>org.quartz-scheduler</groupId> |
| 164 | + <artifactId>quartz</artifactId> |
| 165 | + <version>${quartz.version}</version> |
| 166 | + <exclusions> |
| 167 | + <exclusion> |
| 168 | + <groupId>com.mchange</groupId> |
| 169 | + <artifactId>c3p0</artifactId> |
| 170 | + </exclusion> |
| 171 | + <exclusion> |
| 172 | + <groupId>com.zaxxer</groupId> |
| 173 | + <artifactId>HikariCP-java6</artifactId> |
| 174 | + </exclusion> |
| 175 | + </exclusions> |
| 176 | + </dependency> |
| 177 | + <dependency> |
| 178 | + <groupId>com.github.whvcse</groupId> |
| 179 | + <artifactId>easy-captcha</artifactId> |
| 180 | + <version>${easy-captcha.version}</version> |
| 181 | + </dependency> |
| 182 | + </dependencies> |
| 183 | + |
| 184 | + <build> |
| 185 | + <finalName>manager</finalName> |
| 186 | + <plugins> |
| 187 | + <plugin> |
| 188 | + <groupId>org.springframework.boot</groupId> |
| 189 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 190 | + <configuration> |
| 191 | + <fork>true</fork> |
| 192 | + </configuration> |
| 193 | + </plugin> |
| 194 | + </plugins> |
| 195 | + </build> |
| 196 | + |
| 197 | + <repositories> |
| 198 | + <repository> |
| 199 | + <id>aliyun-repos</id> |
| 200 | + <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| 201 | + <snapshots> |
| 202 | + <enabled>false</enabled> |
| 203 | + </snapshots> |
| 204 | + </repository> |
| 205 | + </repositories> |
| 206 | + |
| 207 | + <pluginRepositories> |
| 208 | + <pluginRepository> |
| 209 | + <id>aliyun-plugin</id> |
| 210 | + <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| 211 | + <snapshots> |
| 212 | + <enabled>false</enabled> |
| 213 | + </snapshots> |
| 214 | + </pluginRepository> |
| 215 | + </pluginRepositories> |
| 216 | +</project> |
0 commit comments