pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?xml version="1.0"?>
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.googlecode.jinahya</groupId>
  5. <artifactId>rfc-4648</artifactId>
  6. <version>1.0-alpha-4</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>org.sonatype.oss</groupId>
  10. <artifactId>oss-parent</artifactId>
  11. <version>7</version>
  12. </parent>
  13. <dependencyManagement>
  14. <dependencies>
  15. <dependency>
  16. <groupId>commons-codec</groupId>
  17. <artifactId>commons-codec</artifactId>
  18. <version>1.6</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-lang</groupId>
  22. <artifactId>commons-lang</artifactId>
  23. <version>2.6</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.googlecode.jinahya</groupId>
  27. <artifactId>bit-io</artifactId>
  28. <version>1.0-alpha-11</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.shindig</groupId>
  32. <artifactId>shindig-common</artifactId>
  33. <version>3.0.0-beta4</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.testng</groupId>
  37. <artifactId>testng</artifactId>
  38. <version>6.3.1</version>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>commons-codec</groupId>
  45. <artifactId>commons-codec</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-lang</groupId>
  50. <artifactId>commons-lang</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.googlecode.jinahya</groupId>
  55. <artifactId>bit-io</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.shindig</groupId>
  59. <artifactId>shindig-common</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.testng</groupId>
  64. <artifactId>testng</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. <properties>
  69. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  70. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  71. </properties>
  72. <build>
  73. <extensions>
  74. <extension>
  75. <groupId>com.google.code.maven-svn-wagon</groupId>
  76. <artifactId>maven-svn-wagon</artifactId>
  77. <version>1.4</version>
  78. </extension>
  79. <extension>
  80. <groupId>org.apache.maven.wagon</groupId>
  81. <artifactId>wagon-webdav-jackrabbit</artifactId>
  82. <version>2.2</version>
  83. </extension>
  84. </extensions>
  85. <pluginManagement>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-checkstyle-plugin</artifactId>
  90. <version>2.8</version>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>2.3.2</version>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-gpg-plugin</artifactId>
  100. <version>1.4</version>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-jar-plugin</artifactId>
  105. <version>2.3.1</version>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-javadoc-plugin</artifactId>
  110. <version>2.8</version>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-project-info-reports-plugin</artifactId>
  115. <version>2.4</version>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-release-plugin</artifactId>
  120. <version>2.2.1</version>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-site-plugin</artifactId>
  125. <version>3.0</version>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.codehaus.mojo</groupId>
  129. <artifactId>findbugs-maven-plugin</artifactId>
  130. <version>2.4.0</version>
  131. </plugin>
  132. </plugins>
  133. </pluginManagement>
  134. <plugins>
  135. <plugin>
  136. <groupId>org.apache.maven.plugins</groupId>
  137. <artifactId>maven-compiler-plugin</artifactId>
  138. <executions>
  139. <execution>
  140. <id>compile-1.1</id>
  141. <phase>process-sources</phase>
  142. <goals>
  143. <goal>compile</goal>
  144. </goals>
  145. <configuration>
  146. <source>1.3</source>
  147. <target>1.1</target>
  148. </configuration>
  149. </execution>
  150. <execution>
  151. <id>testCompile-1.5</id>
  152. <phase>process-test-sources</phase>
  153. <goals>
  154. <goal>testCompile</goal>
  155. </goals>
  156. <configuration>
  157. <source>1.5</source>
  158. <target>1.5</target>
  159. </configuration>
  160. </execution>
  161. </executions>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-release-plugin</artifactId>
  166. <configuration>
  167. <goals>deploy</goals>
  168. <tagBase>https://jinahya.googlecode.com/svn/tags/${project.groupId}</tagBase>
  169. </configuration>
  170. </plugin>
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-site-plugin</artifactId>
  174. <executions>
  175. <execution>
  176. <id>attach-descriptor</id>
  177. <goals>
  178. <goal>attach-descriptor</goal>
  179. </goals>
  180. </execution>
  181. </executions>
  182. <configuration>
  183. <reportPlugins>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-checkstyle-plugin</artifactId>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-javadoc-plugin</artifactId>
  191. </plugin>
  192. <plugin>
  193. <groupId>org.codehaus.mojo</groupId>
  194. <artifactId>findbugs-maven-plugin</artifactId>
  195. </plugin>
  196. </reportPlugins>
  197. </configuration>
  198. </plugin>
  199. </plugins>
  200. </build>
  201. <reporting />
  202. <name>rfc-4648</name>
  203. <url>http://www.jinahya.com/mvn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
  204. <inceptionYear>2011</inceptionYear>
  205. <licenses>
  206. <license>
  207. <name>Apache 2</name>
  208. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  209. <distribution>repo</distribution>
  210. <comments>A business-friendly OSS license</comments>
  211. </license>
  212. </licenses>
  213. <organization />
  214. <developers>
  215. <developer>
  216. <id>jinahya</id>
  217. <name>Jin Kwon</name>
  218. <email>jinahya@gmail.com</email>
  219. </developer>
  220. </developers>
  221. <contributors />
  222. <issueManagement />
  223. <ciManagement />
  224. <mailingLists />
  225. <scm>
  226. <connection>scm:svn:http://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</connection>
  227. <developerConnection>scm:svn:https://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</developerConnection>
  228. <url>http://code.google.com/p/jinahya/source/browse/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</url>
  229. </scm>
  230. <prerequisites />
  231. <repositories />
  232. <pluginRepositories />
  233. <distributionManagement>
  234. <snapshotRepository>
  235. <id>sonatype-nexus-snapshots</id>
  236. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  237. </snapshotRepository>
  238. <repository>
  239. <id>sonatype-nexus-staging</id>
  240. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  241. </repository>
  242. <!--
  243. <site>
  244. <id>googlecode</id>
  245. <url>svn:https://jinahya.googlecode.com/svn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
  246. </site>
  247. -->
  248. <site>
  249. <id>jinahya.com</id>
  250. <url>dav:${project.url}</url>
  251. </site>
  252. </distributionManagement>
  253. <profiles>
  254. <profile>
  255. <id>release-sign-artifacts</id>
  256. <activation>
  257. <property>
  258. <name>performRelease</name>
  259. <value>true</value>
  260. </property>
  261. </activation>
  262. <build>
  263. <plugins>
  264. <plugin>
  265. <groupId>org.apache.maven.plugins</groupId>
  266. <artifactId>maven-gpg-plugin</artifactId>
  267. <executions>
  268. <execution>
  269. <id>sign-artifacts</id>
  270. <phase>verify</phase>
  271. <goals>
  272. <goal>sign</goal>
  273. </goals>
  274. </execution>
  275. </executions>
  276. </plugin>
  277. </plugins>
  278. </build>
  279. </profile>
  280. </profiles>
  281. </project>