pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>platform</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>zoniot-core-mongo</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.zcxk</groupId>
  22. <artifactId>zoniot-core-common</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. <build>
  29. <plugins>
  30. <!--编译插件 -->
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <source>8</source>
  36. <target>8</target>
  37. <encoding>utf-8</encoding>
  38. </configuration>
  39. </plugin>
  40. <!--打包插件-->
  41. <plugin>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-maven-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>repackage</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. <configuration>
  52. <skip>true</skip>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>