pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>happy-boot-module-system</artifactId>
  6. <version>2.1.0</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>happy-boot-parent</artifactId>
  10. <version>2.1.0</version>
  11. </parent>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>happy-boot-base-common</artifactId>
  34. <version>2.1.0</version>
  35. </dependency>
  36. <!-- online form-->
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>online-form</artifactId>
  40. <version>1.0.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hibernate</groupId>
  44. <artifactId>hibernate-core</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>commons-collections</groupId>
  48. <artifactId>commons-collections</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <!-- online form -->
  53. </dependencies>
  54. <build>
  55. <!--当作为模块时,屏蔽打包plugin或者给被依赖的模块打包成非可执行的jar,否则会造成二次打包-->
  56. <plugins>
  57. <plugin>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-maven-plugin</artifactId>
  60. <configuration>
  61. <classifier>exec</classifier>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>