pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>java-mcli</artifactId>
  7. <groupId>com.malk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mjava-guyuan</artifactId>
  12. <description>谷元发票功能开发, 查重验真, 混票识别</description>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- 核心模块-->
  19. <dependency>
  20. <groupId>com.malk</groupId>
  21. <artifactId>mjava</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  25. <dependency>
  26. <groupId>com.tencentcloudapi</groupId>
  27. <artifactId>tencentcloud-sdk-java</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. <version>2.1.1.RELEASE</version>
  36. <configuration>
  37. <includeSystemScope>true</includeSystemScope>
  38. <!-- 如果没有该配置,devtools不会生效: 打包时关闭 -->
  39. <fork>false</fork>
  40. <!-- 避免中文乱码 -->
  41. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  42. </configuration>
  43. <!-- 允许生成可运行jar -->
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>repackage</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. <finalName>${project.artifactId}</finalName>
  54. </build>
  55. </project>