pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>me.yoqi</groupId>
  5. <artifactId>ComposeName</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>me.yoqi</name>
  8. <build>
  9. <sourceDirectory>src</sourceDirectory>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <version>3.1</version>
  14. <configuration>
  15. <source>1.7</source>
  16. <target>1.7</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. <version>5.1.10</version>
  26. </dependency>
  27. <!-- Logback是由log4j创始人设计的又一个开源日志组件。logback当前分成三个模块:logback-core,logback-
  28. classic和logback-access。logback-core是其它两个模块的基础模块。logback-classic是log4j的一个
  29. 改良版本。此外logback-classic完整实现SLF4J API使你可以很方便地更换成其它日志系统如log4j或JDK14 Logging。logback-access访问模块与Servlet容器集成提供通过Http来访问日志的功能。 -->
  30. <dependency>
  31. <groupId>ch.qos.logback</groupId>
  32. <artifactId>logback-classic</artifactId>
  33. <version>1.1.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>ch.qos.logback</groupId>
  37. <artifactId>logback-access</artifactId>
  38. <version>1.1.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>ch.qos.logback</groupId>
  42. <artifactId>logback-core</artifactId>
  43. <version>1.1.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.slf4j</groupId>
  47. <artifactId>slf4j-api</artifactId>
  48. <version>1.7.10</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.json</groupId>
  52. <artifactId>json</artifactId>
  53. <version>20140107</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl -->
  56. <dependency>
  57. <groupId>net.sourceforge.jexcelapi</groupId>
  58. <artifactId>jxl</artifactId>
  59. <version>2.6.12</version>
  60. </dependency>
  61. </dependencies>
  62. <description>目的,从chinese3500.txt里面,两两汉字组合。观察比较好的名字。</description>
  63. </project>