pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <parent>
  6. <artifactId>fuint</artifactId>
  7. <groupId>com.fuint</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fuint-utils</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.google.zxing</groupId>
  17. <artifactId>core</artifactId>
  18. <version>3.3.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.zxing</groupId>
  22. <artifactId>javase</artifactId>
  23. <version>3.3.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.bouncycastle</groupId>
  27. <artifactId>bcprov-jdk15on</artifactId>
  28. <version>1.58</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-lang</groupId>
  32. <artifactId>commons-lang</artifactId>
  33. <version>2.6</version>
  34. </dependency>
  35. <!-- poi begin -->
  36. <dependency>
  37. <groupId>org.apache.poi</groupId>
  38. <artifactId>poi</artifactId>
  39. <version>3.14</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.poi</groupId>
  43. <artifactId>poi-ooxml</artifactId>
  44. <version>3.14</version>
  45. </dependency>
  46. <!-- poi end -->
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-lang3</artifactId>
  50. <version>3.12.0</version>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <version>3.1</version>
  59. <configuration>
  60. <source>1.8</source>
  61. <target>1.8</target>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>