初始化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 regels
3.0 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>sie-irradiator-v1.0</artifactId>
  7. <groupId>com.sie.irradiator</groupId>
  8. <version>2.0.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>2068-yexiu-read-api</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- 新增feign相关的jar-->
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-openfeign</artifactId>
  21. <version>2.0.2.RELEASE</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.github.openfeign</groupId>
  25. <artifactId>feign-core</artifactId>
  26. <version>9.7.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>javax.servlet-api</artifactId>
  31. <version>3.1.0</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sie.irradiator</groupId>
  36. <artifactId>1003-sieiot-core</artifactId>
  37. <version>1.0.3</version>
  38. </dependency>
  39. </dependencies>
  40. <repositories>
  41. <repository>
  42. <id>myRepository</id>
  43. <name>local private nexus</name>
  44. <url>http://139.159.227.77:8081/nexus/content/repositories/thirdparty/</url>
  45. <releases>
  46. <enabled>true</enabled>
  47. </releases>
  48. <snapshots>
  49. <enabled>true</enabled>
  50. </snapshots>
  51. </repository>
  52. </repositories>
  53. <distributionManagement>
  54. <repository>
  55. <id>nexus-releases</id>
  56. <name>Nexus Release Repository</name>
  57. <url>http://139.159.227.77:8081/nexus/content/repositories/thirdparty/</url>
  58. </repository>
  59. <snapshotRepository>
  60. <id>nexus-snapshots</id>
  61. <name>Nexus Snapshot Repository</name>
  62. <url>http://139.159.227.77:8081/nexus/content/repositories/thirdparty/</url>
  63. </snapshotRepository>
  64. </distributionManagement>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <configuration>
  71. <compilerArgs>
  72. <arg>-parameters</arg>
  73. </compilerArgs>
  74. <encoding>${project.build.sourceEncoding}</encoding>
  75. <source>${java.version}</source>
  76. <target>${java.version}</target>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>