No Description
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.8KB

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