kingbase8-8.6.0.pom 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cn.com.kingbase</groupId>
  5. <artifactId>kingbase8</artifactId>
  6. <name>kingbase8</name>
  7. <version>8.6.0</version>
  8. <description>kingbase JDBC Driver</description>
  9. <url>https://gitee.com/kingbasees/kingbase-jdbc</url>
  10. <developers>
  11. <developer>
  12. <name>kingbasetech</name>
  13. <email>marketing@kingbase.com.cn</email>
  14. <organization>kingbase</organization>
  15. <organizationUrl>https://www.kingbase.com.cn/</organizationUrl>
  16. </developer>
  17. </developers>
  18. <licenses>
  19. <license>
  20. <name>The Apache License, Version 2.0</name>
  21. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  22. </license>
  23. </licenses>
  24. <scm>
  25. <url>https://gitee.com/kingbasees/kingbase-jdbc.git</url>
  26. </scm>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-gpg-plugin</artifactId>
  31. <version>1.6</version>
  32. <executions>
  33. <execution>
  34. <id>sign-artifacts</id>
  35. <goals>
  36. <goal>sign</goal>
  37. </goals>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-javadoc-plugin</artifactId>
  43. <version>3.5.0</version>
  44. <executions>
  45. <execution>
  46. <id>attach-javadocs</id>
  47. <goals>
  48. <goal>jar</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. <configuration>
  53. <archive>
  54. <addMavenDescriptor>false</addMavenDescriptor>
  55. </archive>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-source-plugin</artifactId>
  60. <version>3.2.1</version>
  61. <executions>
  62. <execution>
  63. <id>attach-sources</id>
  64. <goals>
  65. <goal>jar</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. <configuration>
  70. <archive>
  71. <addMavenDescriptor>false</addMavenDescriptor>
  72. </archive>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-shade-plugin</artifactId>
  77. <version>3.1.0</version>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>shade</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. <configuration>
  86. <minimizeJar>true</minimizeJar>
  87. <filters>
  88. <filter>
  89. <artifact>*:*</artifact>
  90. <includes>
  91. <include>**</include>
  92. </includes>
  93. <excludes>
  94. <exclude>META-INF/maven/**</exclude>
  95. <exclude>kingbasetest.class</exclude>
  96. <exclude>META-INF/LICENSE</exclude>
  97. </excludes>
  98. </filter>
  99. </filters>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. <distributionManagement>
  105. <repository>
  106. <id>ossrh</id>
  107. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  108. </repository>
  109. <snapshotRepository>
  110. <id>ossrh</id>
  111. <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
  112. </snapshotRepository>
  113. </distributionManagement>
  114. <properties>
  115. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  116. </properties>
  117. </project>