t-oa-0.0.1-SNAPSHOT.pom 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.jtech</groupId>
  7. <artifactId>t-oa</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.5.4.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <modules>
  17. <module>t-oa-parent</module>
  18. <module>t-oa-config</module>
  19. <module>t-oa-auth</module>
  20. <module>t-oa-logic</module>
  21. <module>t-oa-admin</module>
  22. <module>t-oa-portal</module>
  23. </modules>
  24. <name>jt::oa</name>
  25. <description>t-oa</description>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <reporting>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-project-info-reports-plugin</artifactId>
  42. <version>2.9</version>
  43. <configuration>
  44. <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
  45. </configuration>
  46. <reportSets>
  47. <reportSet>
  48. <reports>
  49. <report>index</report>
  50. </reports>
  51. </reportSet>
  52. </reportSets>
  53. </plugin>
  54. </plugins>
  55. </reporting>
  56. </project>