pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.0.2-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>US-ASCII</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.postgresql</groupId>
  38. <artifactId>pljava-api</artifactId>
  39. <version>1.6.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.crosswire</groupId>
  43. <artifactId>jsword</artifactId>
  44. <version>2.1-SNAPSHOT</version>
  45. <scope>system</scope>
  46. <systemPath>${pom.basedir}/lib/jsword-2.1-SNAPSHOT.jar</systemPath>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.junit.jupiter</groupId>
  50. <artifactId>junit-jupiter-engine</artifactId>
  51. <version>5.3.1</version>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <!-- The rest here is pretty much boilerplate. -->
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <version>2.22.0</version>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.1</version>
  67. <configuration>
  68. <release>9</release>
  69. </configuration>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-jar-plugin</artifactId>
  74. <version>2.6</version>
  75. <configuration>
  76. <archive>
  77. <manifest>
  78. <!-- This identifies and version-stamps the jar.
  79. Not essential, but easy and useful. -->
  80. <addDefaultImplementationEntries>
  81. true
  82. </addDefaultImplementationEntries>
  83. </manifest>
  84. <manifestSections>
  85. <!-- This identifies a file in the jar named
  86. pljava.ddr as an SQLJDeploymentDescriptor. -->
  87. <manifestSection>
  88. <name>pljava.ddr</name>
  89. <manifestEntries>
  90. <SQLJDeploymentDescriptor>
  91. true
  92. </SQLJDeploymentDescriptor>
  93. </manifestEntries>
  94. </manifestSection>
  95. </manifestSections>
  96. </archive>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>