pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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-examples</artifactId>
  5. <version>4.0.7</version>
  6. <packaging>jar</packaging>
  7. <name>twitter4j-examples</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>org.twitter4j</groupId>
  103. <artifactId>twitter4j-async</artifactId>
  104. <version>4.0.7</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.twitter4j</groupId>
  108. <artifactId>twitter4j-stream</artifactId>
  109. <version>4.0.7</version>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <defaultGoal>install</defaultGoal>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-release-plugin</artifactId>
  118. <version>2.3.2</version>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-compiler-plugin</artifactId>
  123. <configuration>
  124. <encoding>UTF-8</encoding>
  125. <source>8</source>
  126. <target>8</target>
  127. </configuration>
  128. <version>2.5.1</version>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-jar-plugin</artifactId>
  133. <configuration>
  134. <archive>
  135. <manifestFile>src/main/resources/META-INF/MANIFEST.MF
  136. </manifestFile>
  137. <manifest>
  138. <addDefaultSpecificationEntries>true
  139. </addDefaultSpecificationEntries>
  140. <addDefaultImplementationEntries>true
  141. </addDefaultImplementationEntries>
  142. </manifest>
  143. </archive>
  144. </configuration>
  145. <version>2.4</version>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-source-plugin</artifactId>
  150. <executions>
  151. <execution>
  152. <goals>
  153. <goal>jar</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. <version>2.1.2</version>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-javadoc-plugin</artifactId>
  161. <executions>
  162. <execution>
  163. <id>javadoc-jar</id>
  164. <phase>package</phase>
  165. <goals>
  166. <goal>jar</goal>
  167. </goals>
  168. <configuration>
  169. <excludePackageNames>
  170. </excludePackageNames>
  171. <failOnError>false</failOnError>
  172. </configuration>
  173. </execution>
  174. </executions>
  175. <configuration>
  176. <charset>UTF-8</charset>
  177. <show>public</show>
  178. </configuration>
  179. <version>2.10.3</version>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-resources-plugin</artifactId>
  184. <configuration>
  185. <encoding>UTF-8</encoding>
  186. </configuration>
  187. <version>2.5</version>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. <properties>
  192. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  193. <project.reporting.outputEncoding>UTF-8
  194. </project.reporting.outputEncoding>
  195. </properties>
  196. </project>