pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.stellvoy</groupId>
  8. <artifactId>gig-auth</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>gig-auth-resource-sdk</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-webmvc</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>javax.servlet</groupId>
  25. <artifactId>servlet-api</artifactId>
  26. <version>2.5</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.stellvoy</groupId>
  31. <artifactId>gig-auth-common</artifactId>
  32. <version>1.0.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.github.openfeign</groupId>
  36. <artifactId>feign-core</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40. </project>