| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <?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>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>3.5.8</version>
- <relativePath/>
- </parent>
- <modules>
- <module>imwork-commons</module>
- <module>imwork-windows</module>
- <module>imwork-iaas</module>
- <module>imwork-assist</module>
- <module>imwork-exercise</module>
- </modules>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-plus</artifactId>
- <version>2025.12.1.0</version>
- <packaging>pom</packaging>
- <name>${project.artifactId}</name>
- <url>https://www.imwork.top</url>
- <description>spring-cloud-imwork-dependencies</description>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0</url>
- <comments>
- Copyright 2014-2015 the original author or authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- </comments>
- </license>
- </licenses>
- <!--开发者信息-->
- <developers>
- <developer>
- <id>imwork</id>
- <name>jiangxiaowei</name>
- <email>e-jiangxiaowei@outlook.com</email>
- </developer>
- </developers>
- <properties>
- <java.version>25</java.version>
- <maven.compiler.source>${java.version}</maven.compiler.source>
- <maven.compiler.target>${java.version}</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <!--插件版本定义区 start-->
- <versions-maven-plugin.version>2.20.1</versions-maven-plugin.version>
- <lombok.version>1.18.42</lombok.version>
- <!--插件版本定义区 end-->
- <!--依赖框架版本定义区start-->
- <spring-cloud.version>2025.0.0</spring-cloud.version>
- <spring-cloud-alibaba.version>2025.0.0.0</spring-cloud-alibaba.version>
- <nacos.version>2.5.2</nacos.version>
- <boot-admin.version>3.5.6</boot-admin.version>
- <mybatis.version>3.5.19</mybatis.version>
- <mybatis-spring.version>4.0.0</mybatis-spring.version>
- <mybatis-plus.version>3.5.15</mybatis-plus.version>
- <pagehelper.version>2.1.1</pagehelper.version>
- <!--依赖框架版本定义区end-->
- <!--数据库版本start-->
- <mysql.version>9.5.0</mysql.version>
- <postgresql.version>42.7.8</postgresql.version>
- <!--数据库版本end-->
- <!--apache组件start-->
- <commons-codec.version>1.20.0</commons-codec.version>
- <commons-lang3.version>3.20.0</commons-lang3.version>
- <commons-io.version>2.21.0</commons-io.version>
- <commons-configuration.version>1.10</commons-configuration.version>
- <commons-configuration2.version>2.13.0</commons-configuration2.version>
- <!--apache组件end-->
- <!--其它-->
- <fastjson.version>2.0.60</fastjson.version>
- <easyexcel.version>4.0.3</easyexcel.version>
- <jasypt.version>3.0.5</jasypt.version>
- <gson.version>2.13.2</gson.version>
- <poi.version>5.5.1</poi.version>
- <!--imwork-commons-->
- <imwork-commons.version>${project.version}</imwork-commons.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-excelant</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-full</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-scratchpad</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- </dependency>
- <!--imwork-commons-->
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-base</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-core</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-dao</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-doc</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-redis</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-security</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>top.imwork</groupId>
- <artifactId>imwork-commons-alibaba</artifactId>
- <version>${imwork-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.ulisesbocchio</groupId>
- <artifactId>jasypt-spring-boot-starter</artifactId>
- <version>${jasypt.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons-codec.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-configuration</groupId>
- <artifactId>commons-configuration</artifactId>
- <version>${commons-configuration.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons-lang3.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>${pagehelper.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis-spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <version>${mybatis.version}</version>
- </dependency>
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgresql.version}</version>
- </dependency>
- <dependency>
- <groupId>de.codecentric</groupId>
- <artifactId>spring-boot-admin-starter-server</artifactId>
- <version>${boot-admin.version}</version>
- </dependency>
- <dependency>
- <groupId>de.codecentric</groupId>
- <artifactId>spring-boot-admin-starter-client</artifactId>
- <version>${boot-admin.version}</version>
- </dependency>
- <!--Spring Cloud Alibaba-->
- <dependency>
- <groupId>com.alibaba.nacos</groupId>
- <artifactId>nacos-client</artifactId>
- <version>${nacos.version}</version>
- </dependency>
- <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 基础服务框架-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <finalName>${project.artifactId}-${version}</finalName>
- <plugins>
- <!--版本号同步插件-->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>versions-maven-plugin</artifactId>
- <version>${versions-maven-plugin.version}</version>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- <include>**/*.properties</include>
- <include>**/*.yml</include>
- <include>**/*.yaml</include>
- <include>**/*.json</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <profiles>
- <profile>
- <id>imwork</id>
- <properties>
- <!--全局配置文件地址-->
- <base.config.namespace>imwork-silos</base.config.namespace>
- <base.config.nacos.hostname>127.0.0.1</base.config.nacos.hostname>
- <base.config.nacos.port>8848</base.config.nacos.port>
- <base.config.nacos.username>admin</base.config.nacos.username>
- <base.config.nacos.password>zh.3417.JXW</base.config.nacos.password>
- <base.logs.home>/app/logs/</base.logs.home>
- <!-- 环境标识,需要与配置文件的名称相对应 -->
- <profiles.active>imwork-silos</profiles.active>
- </properties>
- <activation>
- <!-- 默认环境 -->
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- </profiles>
- </project>
|