pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.shanghaichengdi</groupId>
  8. <artifactId>general-controller</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>general-controller-common</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <commons-io.version>1.3.2</commons-io.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.shanghaigeography</groupId>
  21. <artifactId>Infrastructure</artifactId>
  22. <version>1.1-SNAPSHOT</version>
  23. <scope>system</scope>
  24. <systemPath>${project.basedir}/libs/Infrastructure-1.1-SNAPSHOT.jar</systemPath>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.protostuff</groupId>
  28. <artifactId>protostuff-core</artifactId>
  29. <version>1.6.0</version>
  30. <scope>system</scope>
  31. <systemPath>${project.basedir}/libs/protostuff-core-1.6.0.jar</systemPath>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.protostuff</groupId>
  35. <artifactId>protostuff-api</artifactId>
  36. <version>1.6.0</version>
  37. <scope>system</scope>
  38. <systemPath>${project.basedir}/libs/protostuff-api-1.6.0.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.protostuff</groupId>
  42. <artifactId>protostuff-runtime</artifactId>
  43. <version>1.6.0</version>
  44. <scope>system</scope>
  45. <systemPath>${project.basedir}/libs/protostuff-runtime-1.6.0.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.protostuff</groupId>
  49. <artifactId>protostuff-collectionschema</artifactId>
  50. <version>1.6.0</version>
  51. <scope>system</scope>
  52. <systemPath>${project.basedir}/libs/protostuff-collectionschema-1.6.0.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>tomcat-embed-core</groupId>
  56. <artifactId>tomcat-embed-core</artifactId>
  57. <version>9.0.33</version>
  58. <scope>system</scope>
  59. <systemPath>${project.basedir}/libs/tomcat-embed-core-9.0.33.jar</systemPath>
  60. </dependency>
  61. <dependency>
  62. <groupId>bayonetutil</groupId>
  63. <artifactId>bayonetutil</artifactId>
  64. <version>1.0-SNAPSHOT</version>
  65. <scope>system</scope>
  66. <systemPath>${project.basedir}/libs/bayonetutil.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-io</artifactId>
  71. <version>${commons-io.version}</version>
  72. </dependency>
  73. </dependencies>
  74. </project>