pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>web-system</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>aqpt-web</name>
  8. <parent>
  9. <artifactId>aqpt-parent</artifactId>
  10. <groupId>com.xazhcx.aqpt</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <skipTests>true</skipTests>
  20. <sql2o-plus.version>1.0.3</sql2o-plus.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.xazhcx.aqpt</groupId>
  25. <artifactId>aqpt-service</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.xazhcx.aqpt</groupId>
  31. <artifactId>aqpt-online</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.xazhcx.aqpt</groupId>
  37. <artifactId>aqpt-application-center</artifactId>
  38. <version>0.0.1-SNAPSHOT</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <!-- <dependency>-->
  42. <!-- <groupId>com.xazhcx.aqpt</groupId>-->
  43. <!-- <artifactId>aqpt-shuili</artifactId>-->
  44. <!-- <version>0.0.1-SNAPSHOT</version>-->
  45. <!-- <scope>compile</scope>-->
  46. <!-- </dependency>-->
  47. <dependency>
  48. <groupId>com.xazhcx.aqpt</groupId>
  49. <artifactId>aqpt-schedule</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.xazhcx.aqpt</groupId>
  55. <artifactId>aqpt-safety-evaluation</artifactId>
  56. <version>0.0.1-SNAPSHOT</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <!-- <dependency>-->
  60. <!-- <groupId>com.xazhcx.aqpt</groupId>-->
  61. <!-- <artifactId>aqpt-flowable</artifactId>-->
  62. <!-- <version>0.0.1-SNAPSHOT</version>-->
  63. <!-- <scope>compile</scope>-->
  64. <!-- </dependency>-->
  65. <!--https://php.ctolib.com/cotide-sql2o-plus.html-->
  66. <dependency>
  67. <groupId>io.github.cotide</groupId>
  68. <artifactId>sql2o-plus</artifactId>
  69. <version>${sql2o-plus.version}</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. <configuration>
  78. <mainClass>com.xazhcx.aqpt.AqptApplication</mainClass>
  79. </configuration>
  80. <executions>
  81. <execution>
  82. <goals>
  83. <goal>repackage</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-jar-plugin</artifactId>
  91. <version>2.4</version>
  92. <configuration>
  93. <excludes>
  94. <exclude>**/static/back/**</exclude>
  95. <exclude>**/static/back_shuili/**</exclude>
  96. </excludes>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. <!-- <plugins>-->
  101. <!-- <plugin>-->
  102. <!-- <groupId>org.springframework.boot</groupId>-->
  103. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  104. <!-- </plugin>-->
  105. <!-- </plugins>-->
  106. <!-- <resources>-->
  107. <!-- <resource>-->
  108. <!-- <directory>src/main/java</directory>-->
  109. <!-- <includes>-->
  110. <!-- <include>**/*.*</include>-->
  111. <!-- </includes>-->
  112. <!-- </resource>-->
  113. <!-- <resource>-->
  114. <!-- <directory>src/main/resources</directory>-->
  115. <!-- &lt;!&ndash; <includes>&ndash;&gt;-->
  116. <!-- &lt;!&ndash; <include>**/*.*</include>&ndash;&gt;-->
  117. <!-- &lt;!&ndash; </includes>&ndash;&gt;-->
  118. <!-- <excludes>-->
  119. <!-- <exclude>**/static/*/*</exclude>-->
  120. <!-- </excludes>-->
  121. <!-- </resource>-->
  122. <!-- </resources>-->
  123. </build>
  124. </project>