pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.twitter4j</groupId>
  4. <artifactId>twitter4j-appengine</artifactId>
  5. <version>4.0.7</version>
  6. <packaging>jar</packaging>
  7. <name>twitter4j-appengine</name>
  8. <description>A Java library for the Twitter API</description>
  9. <url>http://twitter4j.org/</url>
  10. <licenses>
  11. <license>
  12. <name>Apache License 2.0</name>
  13. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  14. <distribution>repo</distribution>
  15. </license>
  16. </licenses>
  17. <scm>
  18. <url>https://github.com/yusuke/twitter4j</url>
  19. <connection>scm:git:https://github.com/yusuke/twitter4j.git</connection>
  20. <developerConnection>scm:https://github.com/yusuke/twitter4j.git
  21. </developerConnection>
  22. <tag>4.0.7</tag>
  23. </scm>
  24. <developers>
  25. <developer>
  26. <id>yusuke</id>
  27. <name>Yusuke</name>
  28. <email>yusuke@mac.com</email>
  29. <url>http://samuraism.jp/</url>
  30. <roles>
  31. <role>lead</role>
  32. <role>architect</role>
  33. <role>developer</role>
  34. </roles>
  35. <timezone>9</timezone>
  36. </developer>
  37. </developers>
  38. <issueManagement>
  39. <system>YouTrack</system>
  40. <url>http://issue.twitter4j.org/youtrack/issues?q=project%3A+Twitter4J</url>
  41. </issueManagement>
  42. <distributionManagement>
  43. <repository>
  44. <id>sonatype-nexus-staging</id>
  45. <name>Nexus Release Repository</name>
  46. <uniqueVersion>false</uniqueVersion>
  47. <url>file:/Users/yusuke/maven2/
  48. </url>
  49. </repository>
  50. <snapshotRepository>
  51. <id>org.twitter4j</id>
  52. <name>twitter4j.org Repository</name>
  53. <uniqueVersion>false</uniqueVersion>
  54. <url>file:${user.home}/maven2/</url>
  55. </snapshotRepository>
  56. </distributionManagement>
  57. <profiles>
  58. <profile>
  59. <id>release-sign-artifacts</id>
  60. <activation>
  61. <property>
  62. <name>performRelease</name>
  63. <value>true</value>
  64. </property>
  65. </activation>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-gpg-plugin</artifactId>
  71. <version>1.4</version>
  72. <executions>
  73. <execution>
  74. <id>sign-artifacts</id>
  75. <phase>verify</phase>
  76. <goals>
  77. <goal>sign</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </profile>
  85. </profiles>
  86. <mailingLists>
  87. <mailingList>
  88. <name>Twitter4J</name>
  89. <subscribe>twitter4j-subscribe@googlegroups.com</subscribe>
  90. <unsubscribe>twitter4j-unsubscribe@googlegroups.com</unsubscribe>
  91. <post>twitter4j@googlegroups.com</post>
  92. <archive>http://groups.google.com/group/twitter4j</archive>
  93. </mailingList>
  94. </mailingLists>
  95. <dependencies>
  96. <dependency>
  97. <groupId>org.twitter4j</groupId>
  98. <artifactId>twitter4j-core</artifactId>
  99. <version>4.0.7</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.google.appengine</groupId>
  103. <artifactId>appengine-api-1.0-sdk</artifactId>
  104. <version>1.8.7</version>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.google.appengine</groupId>
  109. <artifactId>appengine-testing</artifactId>
  110. <version>1.8.7</version>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.appengine</groupId>
  115. <artifactId>appengine-api-stubs</artifactId>
  116. <version>1.8.7</version>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.junit.jupiter</groupId>
  121. <artifactId>junit-jupiter-api</artifactId>
  122. <version>5.2.0</version>
  123. <scope>test</scope>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <defaultGoal>install</defaultGoal>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-release-plugin</artifactId>
  132. <version>2.3.2</version>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-compiler-plugin</artifactId>
  137. <configuration>
  138. <encoding>UTF-8</encoding>
  139. <source>6</source>
  140. <target>6</target>
  141. </configuration>
  142. <version>2.5.1</version>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-jar-plugin</artifactId>
  147. <configuration>
  148. <archive>
  149. <manifestFile>src/main/resources/META-INF/MANIFEST.MF
  150. </manifestFile>
  151. <manifest>
  152. <addDefaultSpecificationEntries>true
  153. </addDefaultSpecificationEntries>
  154. <addDefaultImplementationEntries>true
  155. </addDefaultImplementationEntries>
  156. </manifest>
  157. </archive>
  158. </configuration>
  159. <version>2.4</version>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-source-plugin</artifactId>
  164. <executions>
  165. <execution>
  166. <goals>
  167. <goal>jar</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. <version>2.1.2</version>
  172. </plugin>
  173. <plugin>
  174. <artifactId>maven-javadoc-plugin</artifactId>
  175. <executions>
  176. <execution>
  177. <id>javadoc-jar</id>
  178. <phase>package</phase>
  179. <goals>
  180. <goal>jar</goal>
  181. </goals>
  182. <configuration>
  183. <failOnError>false</failOnError>
  184. </configuration>
  185. </execution>
  186. </executions>
  187. <configuration>
  188. <charset>UTF-8</charset>
  189. <show>public</show>
  190. </configuration>
  191. <version>2.10.3</version>
  192. </plugin>
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-resources-plugin</artifactId>
  196. <configuration>
  197. <encoding>UTF-8</encoding>
  198. </configuration>
  199. <version>2.5</version>
  200. </plugin>
  201. <plugin>
  202. <artifactId>maven-surefire-plugin</artifactId>
  203. <version>2.19.1</version>
  204. <dependencies>
  205. <dependency>
  206. <groupId>org.junit.platform</groupId>
  207. <artifactId>junit-platform-surefire-provider</artifactId>
  208. <version>1.0.1</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.junit.jupiter</groupId>
  212. <artifactId>junit-jupiter-engine</artifactId>
  213. <version>5.2.0</version>
  214. </dependency>
  215. </dependencies>
  216. </plugin>
  217. </plugins>
  218. </build>
  219. <properties>
  220. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  221. <project.reporting.outputEncoding>UTF-8
  222. </project.reporting.outputEncoding>
  223. </properties>
  224. </project>