pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  6. <groupId>com.kingkong</groupId>
  7. <artifactId>bljs</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.kingkong</groupId>
  11. <artifactId>repo</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>repo</name>
  14. <description>数据库</description>
  15. <packaging>jar</packaging>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.mybatis.spring.boot</groupId>
  27. <artifactId>mybatis-spring-boot-starter</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.mybatis.generator</groupId>
  34. <artifactId>mybatis-generator-maven-plugin</artifactId>
  35. <version>1.3.7</version>
  36. <configuration>
  37. <verbose>true</verbose>
  38. <overwrite>true</overwrite>
  39. </configuration>
  40. <dependencies>
  41. <dependency>
  42. <groupId>com.oracle</groupId>
  43. <artifactId>ojdbc6</artifactId>
  44. <version>11.2.0</version>
  45. </dependency>
  46. <!--<dependency>-->
  47. <!--<groupId>org.mybatis.generator</groupId>-->
  48. <!--<artifactId>mybatis-generator-core</artifactId>-->
  49. <!--<version>1.3.7</version>-->
  50. <!--</dependency>-->
  51. </dependencies>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <version>2.4.2</version>
  57. <configuration>
  58. <skipTests>true</skipTests>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>