pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>jeecg-module-lttc-ai</artifactId>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <version>3.7.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>jeecg-module-lttc-ai-start</artifactId>
  10. <dependencies>
  11. <!--引入微服务启动依赖 starter-->
  12. <dependency>
  13. <groupId>org.jeecgframework.boot</groupId>
  14. <artifactId>jeecg-boot-starter-cloud</artifactId>
  15. </dependency>
  16. <!--system cloud api-->
  17. <dependency>
  18. <groupId>org.jeecgframework.boot</groupId>
  19. <artifactId>jeecg-system-cloud-api</artifactId>
  20. </dependency>
  21. <!--引入业务模块-->
  22. <dependency>
  23. <groupId>org.jeecgframework.boot</groupId>
  24. <artifactId>jeecg-module-lttc-ai-biz</artifactId>
  25. <version>3.7.0</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <!-- 打包名称 -->
  30. <finalName>${project.artifactId}</finalName>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. <executions>
  36. <execution>
  37. <goals>
  38. <goal>repackage</goal>
  39. </goals>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-deploy-plugin</artifactId>
  46. <configuration>
  47. <skip>true</skip>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>