pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <project
  2. xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation=
  5. "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  6. >
  7. <modelVersion>4.0.0</modelVersion>
  8. <!-- Above is all boilerplate. Next: your project's "Maven coordinates" -->
  9. <groupId>one.shandan</groupId>
  10. <artifactId>pljava-jsword</artifactId>
  11. <version>0.1.1-SNAPSHOT</version>
  12. <!-- Coordinates are nice, but so are names and descriptions for humans. -->
  13. <name>JSword for Postgresql</name>
  14. <description>Provides postgresql functions for JSword</description>
  15. <!--
  16. Many Maven plugins care what character set encoding your files are in.
  17. For this example I've chosen the most restrictive (US-ASCII). Change if
  18. your files use a different encoding, but be sure not to lie. You should
  19. be sure the encoding named here IS the way your source files are coded.
  20. -->
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. </properties>
  24. <!-- Here's where you say your project depends on a pljava-api version. -->
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.jdom</groupId>
  28. <artifactId>jdom2</artifactId>
  29. <version>2.0.6.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-api</artifactId>
  34. <version>1.7.36</version>
  35. </dependency>
  36. <!--<dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-simple</artifactId>
  39. <version>1.7.36</version>
  40. </dependency> -->
  41. <dependency>
  42. <groupId>org.postgresql</groupId>
  43. <artifactId>pljava-api</artifactId>
  44. <version>1.6.4</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.crosswire</groupId>
  48. <artifactId>jsword</artifactId>
  49. <version>2.1-SNAPSHOT</version>
  50. <scope>system</scope>
  51. <systemPath>${pom.basedir}/lib/jsword-2.1-SNAPSHOT.jar</systemPath>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.junit.jupiter</groupId>
  55. <artifactId>junit-jupiter-engine</artifactId>
  56. <version>5.3.1</version>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. <!-- The rest here is pretty much boilerplate. -->
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-surefire-plugin</artifactId>
  66. <version>2.22.0</version>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>3.8.1</version>
  72. <configuration>
  73. <release>9</release>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-jar-plugin</artifactId>
  79. <version>2.6</version>
  80. <configuration>
  81. <archive>
  82. <manifest>
  83. <!-- This identifies and version-stamps the jar.
  84. Not essential, but easy and useful. -->
  85. <addDefaultImplementationEntries>
  86. true
  87. </addDefaultImplementationEntries>
  88. </manifest>
  89. <manifestSections>
  90. <!-- This identifies a file in the jar named
  91. pljava.ddr as an SQLJDeploymentDescriptor. -->
  92. <manifestSection>
  93. <name>pljava.ddr</name>
  94. <manifestEntries>
  95. <SQLJDeploymentDescriptor>
  96. true
  97. </SQLJDeploymentDescriptor>
  98. </manifestEntries>
  99. </manifestSection>
  100. </manifestSections>
  101. </archive>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>