123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <?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>2.5.13</version>
- </parent>
-
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-parent</artifactId>
- <version>4.4.1-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <name>JeeSite Parent</name>
- <url>http://jeesite.com</url>
- <inceptionYear>2013-Now</inceptionYear>
-
- <properties>
- <!-- common version setting -->
- <commons-io.version>2.11.0</commons-io.version>
- <commons-text.version>1.9</commons-text.version>
- <commons-beanutils.version>1.9.4</commons-beanutils.version>
- <fst.version>2.57</fst.version>
- <fastjson.version>1.2.80</fastjson.version>
- <commons-email.version>1.5</commons-email.version>
- <!-- <jackson.version>2.12.6</jackson.version> -->
- <!-- <activation.version>1.1.1</activation.version> -->
- <UserAgentUtils.version>1.21</UserAgentUtils.version>
- <!-- <metadata-extractor.version>2.11.0</metadata-extractor.version> -->
- <thumbnailator.version>0.4.17</thumbnailator.version>
- <twelvemonkeys.version>3.8.2</twelvemonkeys.version>
- <blade-patchca.version>1.1.2</blade-patchca.version>
- <jmimemagic.version>0.1.5</jmimemagic.version>
- <zxing.version>3.4.1</zxing.version>
- <poi.version>4.1.2</poi.version>
- <pinyin4j.version>2.5.1</pinyin4j.version>
- <groovy.version>3.0.10</groovy.version>
- <!-- framework version setting -->
- <mybatis.version>3.5.9</mybatis.version>
- <mybatis-spring.version>2.0.6</mybatis-spring.version>
- <jsqlparser.version>4.4</jsqlparser.version>
- <druid.version>1.2.9</druid.version>
- <shiro.version>1.9.0</shiro.version>
- <j2cache.version>2.8.0-release</j2cache.version>
- <swagger.version>1.6.0</swagger.version>
- <log4j2.version>2.17.0</log4j2.version>
- <!-- jdbc setting -->
- <!-- <mysql.version>5.1.49</mysql.version> -->
- <mysql.version>8.0.29</mysql.version>
- <!-- environment setting -->
- <java.version>1.8</java.version>
- <!-- <tomcat.version>9.0.58</tomcat.version> -->
- <maven.test.skip>true</maven.test.skip>
- <maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version><!-- 降级到该版本,新版本可能会出现VM崩溃 -->
- <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
- <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
-
- <!-- docker setting -->
- <docker.dockerHost>http://192.168.56.102:2375</docker.dockerHost>
- <docker.imageName>thinkgem/${project.artifactId}:4.3</docker.imageName>
- <docker.run.port>8980:8980</docker.run.port>
-
- </properties>
- <build>
- <plugins>
- <!-- compiler插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- <!-- jar插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- </plugin>
- <!-- resource插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- </plugin>
- <!-- install插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- </plugin>
- <!-- clean插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-clean-plugin</artifactId>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <!-- compiler插件,设定JDK版本 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <showWarnings>true</showWarnings>
- <!-- <compilerArguments>
- <verbose /> 输出有关编译器正在执行的操作的消息
- <bootclasspath>${JAVA_HOME}\jre\lib\rt.jar;${JAVA_HOME}\jre\lib\jce.jar</bootclasspath>
- </compilerArguments> -->
- </configuration>
- </plugin>
- <!-- jar插件,配置manifest文件,加入lib包的jar依赖 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- </configuration>
- <executions>
- <execution>
- <configuration>
- <excludes>
- <exclude>userfiles/**</exclude>
- </excludes>
- <finalName>${project.artifactId}</finalName>
- <archive>
- <manifest>
- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
- <addClasspath>true</addClasspath>
- </manifest>
- </archive>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <!-- war插件,war包名称不带版本号 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>3.2.3</version>
- <configuration>
- <warSourceExcludes>
- userfiles/**
- </warSourceExcludes>
- <webappDirectory>${project.build.directory}/${project.artifactId}</webappDirectory>
- <warName>${project.artifactId}</warName>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- </configuration>
- </plugin>
- <!-- Eclipse 插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-eclipse-plugin</artifactId>
- <version>2.10</version>
- <configuration>
- <downloadSources>${eclipse-plugin-download-sources}</downloadSources>
- <downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
- <wtpversion>2.0</wtpversion>
- <jeeversion>6.0</jeeversion>
- <additionalConfig>
- <file>
- <name>.settings/org.eclipse.core.resources.prefs</name>
- <content>
- <![CDATA[eclipse.preferences.version=1${line.separator}encoding/<project>=${project.build.sourceEncoding}${line.separator}]]>
- </content>
- </file>
- </additionalConfig>
- <additionalProjectnatures>
- <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
- </additionalProjectnatures>
- </configuration>
- </plugin>
- <!-- Java Document Generate -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.2.0</version>
- <executions>
- <execution>
- <phase>prepare-package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <!-- <configuration>
- <additionalparam>-Xdoclint:none</additionalparam>
- </configuration> -->
- </execution>
- </executions>
- </plugin>
- <!-- JavaScript CSS Compress -->
- <plugin>
- <groupId>com.jeesite.maven</groupId>
- <artifactId>compressor-maven-plugin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>prepare-package</phase>
- <goals>
- <goal>compress</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <encoding>UTF-8</encoding>
- <jswarn>false</jswarn>
- <nosuffix>true</nosuffix>
- <linebreakpos>30000</linebreakpos>
- <force>true</force>
- <includes>
- <include>**/*.js</include>
- <include>**/*.css</include>
- </includes>
- <excludes>
- <exclude>**/WEB-INF/classes/**</exclude>
- <exclude>**/*.min.js</exclude>
- <exclude>**/*.min.css</exclude>
- </excludes>
- </configuration>
- </plugin>
- <!-- Eclipse m2e settings only -->
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <versionRange>${maven-dependency-plugin.version}</versionRange>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore />
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- <!-- Docker 插件 https://github.com/fabric8io/docker-maven-plugin -->
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.39.1</version>
- <configuration>
- <dockerHost>${docker.dockerHost}</dockerHost>
- <verbose>true</verbose>
- <images>
- <image>
- <name>${docker.imageName}</name>
- <alias>${project.artifactId}</alias>
- <build>
- <dockerFile>${project.basedir}/bin/docker/Dockerfile</dockerFile>
- <assembly>
- <descriptorRef>artifact</descriptorRef>
- </assembly>
- </build>
- <run>
- <ports>
- <port>${docker.run.port}</port>
- </ports>
- <network>
- <mode>host</mode>
- </network>
- </run>
- </image>
- </images>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <!-- 资源文件配置 -->
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <excludes>
- <exclude>rebel.xml</exclude>
- </excludes>
- </resource>
- </resources>
- </build>
-
- <developers>
- <developer>
- <id>thinkgem</id>
- <name>WangZhen</name>
- <email>thinkgem at 163.com</email>
- <roles><role>Project lead</role></roles>
- <timezone>+8</timezone>
- </developer>
- </developers>
-
- <organization>
- <name>JeeSite</name>
- <url>http://jeesite.com</url>
- </organization>
-
- <repositories>
- <repository>
- <id>aliyun-repos</id>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases><enabled>true</enabled></releases>
- <snapshots><enabled>false</enabled></snapshots>
- </repository>
- <repository>
- <id>jeesite-repos</id>
- <url>http://maven.jeesite.net/repository/maven-public</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>aliyun-repos</id>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases><enabled>true</enabled></releases>
- <snapshots><enabled>false</enabled></snapshots>
- </pluginRepository>
- <pluginRepository>
- <id>jeesite-repos</id>
- <url>http://maven.jeesite.net/repository/maven-public</url>
- </pluginRepository>
- </pluginRepositories>
-
- <profiles>
-
- <profile>
- <id>javadoc</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <profile>
- <id>package</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.jeesite.maven</groupId>
- <artifactId>compressor-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <profile>
- <id>deploy</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.jeesite.maven</groupId>
- <artifactId>compressor-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <snapshotRepository>
- <id>jeesite-repos-s</id>
- <url>http://maven.jeesite.net/repository/maven-snapshots</url>
- </snapshotRepository>
- </distributionManagement>
- </profile>
- </profiles>
- </project>
|