您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>com.gitblit.iciql</groupId>
  5. <artifactId>iciql</artifactId>
  6. <version>2.0.1-SNAPSHOT</version>
  7. <name>Iciql</name>
  8. <description>a model-based database access wrapper for JDBC</description>
  9. <url>http://iciql.com</url>
  10. <inceptionYear>2011</inceptionYear>
  11. <licenses>
  12. <license>
  13. <name>Apache ASL</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  15. </license>
  16. </licenses>
  17. <scm>
  18. <connection>scm:git:git://github.com/gitblit/iciql.git</connection>
  19. <developerConnection>scm:git:https://github.com/gitblit/iciql.git</developerConnection>
  20. <url>https://github.com/gitblit/iciql</url>
  21. <tag>HEAD</tag>
  22. </scm>
  23. <developers>
  24. <developer>
  25. <name>James Moger</name>
  26. <email>james.moger@gmail.com</email>
  27. <organization>gitblit.com</organization>
  28. <organizationUrl>https://github.com/gitblit</organizationUrl>
  29. </developer>
  30. </developers>
  31. <distributionManagement>
  32. <snapshotRepository>
  33. <id>ossrh</id>
  34. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  35. </snapshotRepository>
  36. <repository>
  37. <id>ossrh</id>
  38. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  39. </repository>
  40. </distributionManagement>
  41. <dependencies>
  42. <!-- provided dependencies -->
  43. <dependency>
  44. <groupId>com.beust</groupId>
  45. <artifactId>jcommander</artifactId>
  46. <version>1.17</version>
  47. <type>jar</type>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.h2database</groupId>
  52. <artifactId>h2</artifactId>
  53. <version>1.4.191</version>
  54. <type>jar</type>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.hsqldb</groupId>
  59. <artifactId>hsqldb</artifactId>
  60. <version>2.3.3</version>
  61. <type>jar</type>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.derby</groupId>
  66. <artifactId>derby</artifactId>
  67. <version>10.12.1.1</version>
  68. <type>jar</type>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.derby</groupId>
  73. <artifactId>derbyclient</artifactId>
  74. <version>10.12.1.1</version>
  75. <type>jar</type>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.derby</groupId>
  80. <artifactId>derbynet</artifactId>
  81. <version>10.12.1.1</version>
  82. <type>jar</type>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <version>5.1.38</version>
  89. <type>jar</type>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.postgresql</groupId>
  94. <artifactId>postgresql</artifactId>
  95. <version>9.4.1208</version>
  96. <type>jar</type>
  97. <scope>provided</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.xerial</groupId>
  101. <artifactId>sqlite-jdbc</artifactId>
  102. <version>3.8.11.2</version>
  103. <type>jar</type>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.slf4j</groupId>
  108. <artifactId>slf4j-api</artifactId>
  109. <version>1.7.20</version>
  110. <type>jar</type>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-pool</groupId>
  115. <artifactId>commons-pool</artifactId>
  116. <version>1.5.6</version>
  117. <type>jar</type>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-dbcp</groupId>
  122. <artifactId>commons-dbcp</artifactId>
  123. <version>1.4</version>
  124. <type>jar</type>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.google.code.gson</groupId>
  129. <artifactId>gson</artifactId>
  130. <version>2.3</version>
  131. <type>jar</type>
  132. <scope>provided</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.thoughtworks.xstream</groupId>
  136. <artifactId>xstream</artifactId>
  137. <version>1.4.9</version>
  138. <type>jar</type>
  139. <scope>provided</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.yaml</groupId>
  143. <artifactId>snakeyaml</artifactId>
  144. <version>1.17</version>
  145. <type>jar</type>
  146. <scope>provided</scope>
  147. </dependency>
  148. <!-- test dependencies -->
  149. <dependency>
  150. <groupId>junit</groupId>
  151. <artifactId>junit</artifactId>
  152. <version>4.11</version>
  153. <type>jar</type>
  154. <scope>test</scope>
  155. </dependency>
  156. </dependencies>
  157. <build>
  158. <plugins>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-compiler-plugin</artifactId>
  162. <version>3.1</version>
  163. <configuration>
  164. <source>1.6</source>
  165. <target>1.6</target>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-surefire-plugin</artifactId>
  171. <version>2.19.1</version>
  172. <configuration>
  173. <includes>
  174. <include>com/iciql/test/IciqlSuite.java</include>
  175. </includes>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.codehaus.mojo</groupId>
  180. <artifactId>exec-maven-plugin</artifactId>
  181. <version>1.4.0</version>
  182. <configuration>
  183. <executable>java</executable>
  184. <classpathScope>test</classpathScope>
  185. <arguments>
  186. <argument>-classpath</argument>
  187. <classpath/>
  188. <argument>com.iciql.test.IciqlSuite</argument>
  189. </arguments>
  190. </configuration>
  191. </plugin>
  192. <!-- Release plugin -->
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-release-plugin</artifactId>
  196. <version>2.5</version>
  197. <configuration>
  198. <!-- install next final version in local repo, so that tests on archetypes work -->
  199. <preparationGoals>clean install</preparationGoals>
  200. <autoVersionSubmodules>true</autoVersionSubmodules>
  201. <goals>deploy</goals>
  202. <tagNameFormat>release-@{project.version}</tagNameFormat>
  203. <useReleaseProfile>false</useReleaseProfile>
  204. <releaseProfiles>release</releaseProfiles>
  205. </configuration>
  206. </plugin>
  207. </plugins>
  208. </build>
  209. <profiles>
  210. <profile>
  211. <id>release</id>
  212. <build>
  213. <plugins>
  214. <!-- Java Source plugin -->
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-source-plugin</artifactId>
  218. <executions>
  219. <execution>
  220. <id>attach-sources</id>
  221. <goals>
  222. <goal>jar</goal>
  223. </goals>
  224. </execution>
  225. </executions>
  226. </plugin>
  227. <!-- JavaDoc plugin -->
  228. <plugin>
  229. <groupId>org.apache.maven.plugins</groupId>
  230. <artifactId>maven-javadoc-plugin</artifactId>
  231. <executions>
  232. <execution>
  233. <id>attach-javadocs</id>
  234. <goals>
  235. <goal>jar</goal>
  236. </goals>
  237. <configuration>
  238. <additionalparam>-Xdoclint:none</additionalparam>
  239. </configuration>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. <!-- GPG plugin to sign the artifacts -->
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-gpg-plugin</artifactId>
  247. <version>1.5</version>
  248. <executions>
  249. <execution>
  250. <id>sign-artifacts</id>
  251. <phase>verify</phase>
  252. <goals>
  253. <goal>sign</goal>
  254. </goals>
  255. </execution>
  256. </executions>
  257. </plugin>
  258. </plugins>
  259. </build>
  260. </profile>
  261. </profiles>
  262. </project>