pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.skeleton</groupId>
  5. <artifactId>ibps-skeleton-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-skeleton-biz-root</artifactId>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>modules/skeleton-biz</module>
  14. </modules>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. </dependencies>
  21. </dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.slf4j</groupId>
  25. <artifactId>slf4j-api</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.3</version>
  33. <configuration>
  34. <source>1.8</source>
  35. <target>1.8</target>
  36. <encoding>UTF-8</encoding>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. <profiles>
  42. <profile>
  43. <id>ibps-8081</id>
  44. <activation>
  45. <activeByDefault>true</activeByDefault>
  46. </activation>
  47. <distributionManagement>
  48. <repository>
  49. <id>nexus-releases</id>
  50. <name>Local Nexus Repository</name>
  51. <url></url>
  52. </repository>
  53. <snapshotRepository>
  54. <id>nexus-snapshots</id>
  55. <name>Local Nexus Repository</name>
  56. <url></url>
  57. </snapshotRepository>
  58. </distributionManagement>
  59. </profile>
  60. <profile>
  61. <id>ibps-8081-1</id>
  62. <distributionManagement>
  63. <repository>
  64. <id>nexus-releases</id>
  65. <name>Local Nexus Repository</name>
  66. <url></url>
  67. </repository>
  68. <snapshotRepository>
  69. <id>nexus-snapshots</id>
  70. <name>Local Nexus Repository</name>
  71. <url></url>
  72. </snapshotRepository>
  73. </distributionManagement>
  74. </profile>
  75. <profile>
  76. <id>ibps-8082</id>
  77. <distributionManagement>
  78. <repository>
  79. <id>nexus-releases</id>
  80. <name>Local Nexus Repository</name>
  81. <url></url>
  82. </repository>
  83. <snapshotRepository>
  84. <id>nexus-snapshots</id>
  85. <name>Local Nexus Repository</name>
  86. <url></url>
  87. </snapshotRepository>
  88. </distributionManagement>
  89. </profile>
  90. </profiles>
  91. </project>