|
@@ -0,0 +1,511 @@
|
|
|
+<?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">
|
|
|
+ <parent>
|
|
|
+ <artifactId>web</artifactId>
|
|
|
+ <groupId>com.gyee</groupId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <artifactId>monitor-web-hb</artifactId>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
|
+ <commons.io.version>2.5</commons.io.version>
|
|
|
+ <tomcat.version>9.0.35</tomcat.version>
|
|
|
+ <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
|
|
|
+ <spring-cloud-alibaba.version>2.2.5.RELEASE</spring-cloud-alibaba.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/ 查找jar网站 -->
|
|
|
+ <dependencies>
|
|
|
+ <!-- SpringBoot Web容器 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- SpringBoot集成mybatis框架 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>1.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>org.mybatis.caches</groupId>-->
|
|
|
+ <!-- <artifactId>mybatis-ehcache</artifactId>-->
|
|
|
+ <!-- <version>1.2.1</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+ <!-- SpringBoot 测试 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- 添加swagger2 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>2.9.2</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>2.9.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
+ <version>1.5.21</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ <version>1.5.21</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/io.github.swagger2markup/swagger2markup -->
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-core</artifactId>
|
|
|
+ <version>1.6.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!--GSON -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- pageHelper -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>1.2.5</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- mysql驱动7.0-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
+ <artifactId>ojdbc6</artifactId>
|
|
|
+ <version>11.2.0.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
+ <artifactId>sqljdbc4</artifactId>
|
|
|
+ <version>4.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.taosdata.jdbc</groupId>
|
|
|
+ <artifactId>taos-jdbcdriver</artifactId>
|
|
|
+ <version>2.0.30</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- mysql驱动8.0
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>8.0.11</version>
|
|
|
+ </dependency>
|
|
|
+ -->
|
|
|
+ <!--druid 数据源监控-->
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>1.1.10</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- shiro权限 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
+ <version>1.4.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- shiro权限支持thymeleaf -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.theborakompanioni</groupId>
|
|
|
+ <artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
+ <version>2.0.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- thymeleaf模版 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--常用工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
+ <version>2.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--io常用工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>${commons.io.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--文件上传工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>${commons.fileupload.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 热部署 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <optional>false</optional>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Hutool是一个Java工具包 http://hutool.cn/ -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>4.1.12</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- google验证码 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.penggle</groupId>
|
|
|
+ <artifactId>kaptcha</artifactId>
|
|
|
+ <version>2.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
+ <artifactId>velocity</artifactId>
|
|
|
+ <version>1.7</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- websocket -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- 配置文件读取 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-configuration</groupId>
|
|
|
+ <artifactId>commons-configuration</artifactId>
|
|
|
+ <version>1.10</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- mail -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.mail</groupId>
|
|
|
+ <artifactId>mail</artifactId>
|
|
|
+ <version>1.4.7</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--百度UEditor依赖的jar包 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.json</groupId>
|
|
|
+ <artifactId>json</artifactId>
|
|
|
+ <version>20180813</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ueditor</groupId>
|
|
|
+ <artifactId>1.4.3</artifactId>
|
|
|
+ <version>1.8</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${basedir}/lib/ueditor-1.1.2.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-integration</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-ip</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--quartz依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- 七牛云 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qiniu</groupId>
|
|
|
+ <artifactId>qiniu-java-sdk</artifactId>
|
|
|
+ <version>[7.2.0, 7.2.99]</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.17</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.12</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
|
+ <artifactId>tomcat-juli</artifactId>
|
|
|
+ <version>${tomcat.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tomcat.embed</groupId>
|
|
|
+ <artifactId>tomcat-embed-core</artifactId>
|
|
|
+ <version>${tomcat.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tomcat.embed</groupId>
|
|
|
+ <artifactId>tomcat-embed-el</artifactId>
|
|
|
+ <version>${tomcat.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.tomcat.embed</groupId>
|
|
|
+ <artifactId>tomcat-embed-websocket</artifactId>
|
|
|
+ <version>${tomcat.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>redis.clients</groupId>
|
|
|
+ <artifactId>jedis</artifactId>
|
|
|
+ <version>3.2.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>4.0.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>4.0.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.pegdown</groupId>
|
|
|
+ <artifactId>pegdown</artifactId>
|
|
|
+ <version>1.4.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- webservice-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.ws.commons.axiom</groupId>
|
|
|
+ <artifactId>axiom-api</artifactId>
|
|
|
+ <version>1.2.12</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.axis2</groupId>
|
|
|
+ <artifactId>axis2</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ <type>pom</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.axis2</groupId>
|
|
|
+ <artifactId>axis2-kernel</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.axis2</groupId>
|
|
|
+ <artifactId>axis2-adb</artifactId>
|
|
|
+ <version>1.6.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- webservice-->
|
|
|
+
|
|
|
+ <!--http请求-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.netflix.feign</groupId>
|
|
|
+ <artifactId>feign-core</artifactId>
|
|
|
+ <version>8.18.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.netflix.feign</groupId>
|
|
|
+ <artifactId>feign-jackson</artifactId>
|
|
|
+ <version>8.18.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!--http请求-->
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- spring-cloud-dependencies -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>Hoxton.SR5</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 打包不带版本号 -->
|
|
|
+ <!-- <finalName>Gyee_Frame_HF</finalName> -->
|
|
|
+ <plugins>
|
|
|
+ <!-- JUnit 配置 -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <!--忽略测试启动类 -->
|
|
|
+ <configuration>
|
|
|
+ <skip>true</skip>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!-- generator 配置-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.mybatis.generator</groupId>
|
|
|
+ <artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
+ <version>1.3.7</version>
|
|
|
+ <configuration>
|
|
|
+ <!--允许移动生成的文件 -->
|
|
|
+ <verbose>false</verbose>
|
|
|
+ <!--允许覆盖生成的文件 -->
|
|
|
+ <overwrite>false</overwrite>
|
|
|
+ <!--配置文件的路径 -->
|
|
|
+ <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
|
|
|
+ </configuration>
|
|
|
+ <dependencies>
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>mysql</groupId>-->
|
|
|
+ <!-- <artifactId>mysql-connector-java</artifactId>-->
|
|
|
+ <!-- <version>${mysql.version}</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
+ <artifactId>ojdbc6</artifactId>
|
|
|
+ <version>11.2.0.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>com.microsoft.sqlserver</groupId>-->
|
|
|
+ <!-- <artifactId>sqljdbc4</artifactId>-->
|
|
|
+ <!-- <version>4.0</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ </plugin>
|
|
|
+ <!-- jar运行配置 -->
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <mainClass>com.gyee.SpringbootStart</mainClass>
|
|
|
+ </configuration>
|
|
|
+
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <!-- 阿里云maven仓库 -->
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>aliyun nexus</name>
|
|
|
+ <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>aliyun nexus</name>
|
|
|
+ <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
+
|
|
|
+</project>
|