pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.yinjie</groupId>
  5. <artifactId>HeatingPaymentsInvoker</artifactId>
  6. <version>1.0</version>
  7. <packaging>pom</packaging>
  8. <name>HeatingPaymentsInvoker</name>
  9. <modules>
  10. <module>yjCommon</module>
  11. <module>yjBusiness</module>
  12. <module>yjWebCore</module>
  13. <module>yjWebOne</module>
  14. </modules>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>17</java.version>
  19. <maven.compiler.source>${java.version}</maven.compiler.source>
  20. <maven.compiler.target>${java.version}</maven.compiler.target>
  21. <frame.version>10.2.80</frame.version>
  22. </properties>
  23. <repositories>
  24. <repository>
  25. <id>thirdparty</id>
  26. <url>http://192.168.1.243:12333/nexus/content/repositories/thirdparty/</url>
  27. <layout>default</layout>
  28. <releases>
  29. <enabled>true</enabled>
  30. </releases>
  31. <snapshots>
  32. <enabled>true</enabled>
  33. </snapshots>
  34. </repository>
  35. </repositories>
  36. <dependencies>
  37. <dependency>
  38. <groupId>com.dny</groupId>
  39. <artifactId>dySweetFish</artifactId>
  40. <version>${frame.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.dny</groupId>
  44. <artifactId>dySweetFishPlugin</artifactId>
  45. <version>${frame.version}</version>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-dependency-plugin</artifactId>
  53. <version>3.2.0</version>
  54. <executions>
  55. <execution>
  56. <id>copy</id>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>copy-dependencies</goal>
  60. </goals>
  61. <configuration>
  62. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  63. </configuration>
  64. </execution>
  65. </executions>
  66. <!--<fork>true</fork>-->
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>