Ei kuvausta
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.

pom.xml 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <parent>
  5. <groupId>com.shinsoft</groupId>
  6. <artifactId>service</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>com.shinsoft.iecapi</groupId>
  10. <artifactId>iec-api</artifactId>
  11. <version>1.0.0</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.11</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-openfeign-core</artifactId>
  22. <version>2.1.3.RELEASE</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. </dependency>
  29. <!-- 公共方法和接口-->
  30. <dependency>
  31. <groupId>com.shinsoft</groupId>
  32. <artifactId>tools</artifactId>
  33. <version>1.0.1</version>
  34. <scope>system</scope>
  35. <systemPath>${project.basedir}/../lib/tools-1.0.1.jar</systemPath>
  36. </dependency>
  37. <!-- 公共方法和接口-->
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-jar-plugin</artifactId>
  44. <configuration>
  45. <outputDirectory>
  46. ${project.basedir}/../lib
  47. </outputDirectory>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>