pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.developerstack</groupId>
  6. <artifactId>spring-security-basic-auth</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <properties>
  10. <tomcat.version>8.0.3</tomcat.version>
  11. <start-class>spring-boot-example.Application</start-class>
  12. <java.version>1.8</java.version>
  13. </properties>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.3.3.RELEASE</version>
  18. </parent>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-jdbc</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mariadb.jdbc</groupId>
  26. <artifactId>mariadb-java-client</artifactId>
  27. <version>2.1.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-fileupload</groupId>
  31. <artifactId>commons-fileupload</artifactId>
  32. <version>1.3.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-security</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-tomcat</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.squareup.okhttp3</groupId>
  48. <artifactId>okhttp</artifactId>
  49. <version>3.10.0</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. <!-- <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId>
  61. <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration>
  62. <path>/mycontext</path> </configuration> </plugin> </plugins> </build> -->
  63. </project>