pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <parent>
  6. <artifactId>vbdsm-hj212</artifactId>
  7. <groupId>cn.vbdsm</groupId>
  8. <version>2.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>vbdsm-hj212-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>${project.parent.groupId}</groupId>
  15. <artifactId>vbdsm-hj212-rpc</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>${project.parent.groupId}</groupId>
  19. <artifactId>vbdsm-hj212-plugs</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>${project.parent.groupId}</groupId>
  23. <artifactId>vbdsm-hj212-modle</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.commons</groupId>
  27. <artifactId>commons-pool2</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <profiles>
  31. <profile>
  32. <id>local</id>
  33. <activation>
  34. <activeByDefault>false</activeByDefault>
  35. </activation>
  36. <properties>
  37. <profiles.active>dev</profiles.active>
  38. </properties>
  39. </profile>
  40. <profile>
  41. <id>test</id>
  42. <activation>
  43. <activeByDefault>true</activeByDefault>
  44. </activation>
  45. <properties>
  46. <profiles.active>test</profiles.active>
  47. </properties>
  48. </profile>
  49. <profile>
  50. <id>product</id>
  51. <activation>
  52. <activeByDefault>false</activeByDefault>
  53. </activation>
  54. <properties>
  55. <profiles.active>prod</profiles.active>
  56. </properties>
  57. </profile>
  58. </profiles>
  59. </project>