설명 없음

pom.xml 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.shuhaiwifi.web.auth2</groupId>
  5. <artifactId>com.shuhaiwifi.web.auth2</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>war</packaging>
  8. <properties>
  9. <maven.compiler.source>1.8</maven.compiler.source>
  10. <maven.compiler.target>1.8</maven.compiler.target>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.nianzai.base.mvc</groupId>
  16. <artifactId>micro-mvc-framework</artifactId>
  17. <version>1.0.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.hutool</groupId>
  21. <artifactId>hutool-all</artifactId>
  22. <version>5.6.5</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba.fastjson2</groupId>
  26. <artifactId>fastjson2</artifactId>
  27. <version>2.0.27</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <finalName>auth2</finalName>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.eclipse.jetty</groupId>
  35. <artifactId>jetty-maven-plugin</artifactId>
  36. <version>9.2.8.v20150217</version>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>