pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <parent>
  6. <groupId>com.anji-plus</groupId>
  7. <artifactId>spring-boot-gaea-parent</artifactId>
  8. <version>2.0.2.RELEASE</version>
  9. </parent>
  10. <groupId>com.anjiplus.report</groupId>
  11. <artifactId>aj-report</artifactId>
  12. <description>aj-report</description>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <name>aj-report</name>
  15. <packaging>pom</packaging>
  16. <modules>
  17. <module>report-core</module>
  18. </modules>
  19. <properties>
  20. <gaea.version>2.0.2.RELEASE</gaea.version>
  21. <maven.test.skip>true</maven.test.skip>
  22. </properties>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.anji-plus</groupId>
  27. <artifactId>spring-boot-gaea</artifactId>
  28. <version>${gaea.version}</version>
  29. </dependency>
  30. </dependencies>
  31. </dependencyManagement>
  32. <profiles>
  33. <profile>
  34. <id>dev</id>
  35. <properties>
  36. <spring.profiles.active>dev</spring.profiles.active>
  37. </properties>
  38. <activation>
  39. <activeByDefault>true</activeByDefault>
  40. </activation>
  41. </profile>
  42. </profiles>
  43. </project>