pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.linkedin.urls</groupId>
  5. <artifactId>url-detector</artifactId>
  6. <version>0.2.3-alpha</version>
  7. <packaging>jar</packaging>
  8. <name>com.linkedin.urls:url-detector</name>
  9. <description>A Java library to detect and normalize URLs in text</description>
  10. <url>https://github.com/linkedin/URL-Detector</url>
  11. <licenses>
  12. <license>
  13. <name>The Apache License, Version 2.0</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  15. </license>
  16. </licenses>
  17. <scm>
  18. <connection>scm:git:git://github.com/linkedin/URL-Detector.git</connection>
  19. <developerConnection>scm:git:ssh://github.com:linkedin/URL-Detector.git</developerConnection>
  20. <url>https://github.com/linkedin/URL-Detector/tree/master</url>
  21. </scm>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.testng</groupId>
  25. <artifactId>testng</artifactId>
  26. <version>6.1.1</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.commons</groupId>
  31. <artifactId>commons-lang3</artifactId>
  32. <version>3.3.1</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>3.0</version>
  41. <configuration>
  42. <source>11</source>
  43. <target>11</target>
  44. <testSource>11</testSource>
  45. <testTarget>11</testTarget>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-source-plugin</artifactId>
  51. <version>3.0.1</version>
  52. <executions>
  53. <execution>
  54. <id>attach-sources</id>
  55. <goals>
  56. <goal>jar</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-javadoc-plugin</artifactId>
  64. <version>2.10.4</version>
  65. <executions>
  66. <execution>
  67. <id>attach-javadocs</id>
  68. <goals>
  69. <goal>jar</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-gpg-plugin</artifactId>
  77. <version>1.6</version>
  78. <executions>
  79. <execution>
  80. <id>sign-artifacts</id>
  81. <phase>verify</phase>
  82. <goals>
  83. <goal>sign</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-deploy-plugin</artifactId>
  91. <configuration>
  92. <skip>false</skip>
  93. </configuration>
  94. </plugin>
  95. <!--plugin>
  96. <groupId>org.sonatype.plugins</groupId>
  97. <artifactId>nexus-staging-maven-plugin</artifactId>
  98. <executions>
  99. <execution>
  100. <id>default-deploy</id>
  101. <phase>deploy</phase>
  102. <goals>
  103. <goal>deploy</goal>
  104. </goals>
  105. </execution>
  106. </executions>
  107. <configuration>
  108. <serverId>ossrh</serverId>
  109. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  110. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  111. </configuration>
  112. </plugin!-->
  113. </plugins>
  114. </build>
  115. <developers>
  116. <developer>
  117. <id>tjan</id>
  118. <name>Tzu-Han Jan</name>
  119. <email>tjan@linkedin.com</email>
  120. <organization>LinkedIn</organization>
  121. <organizationUrl>http://www.linkedin.com</organizationUrl>
  122. </developer>
  123. <developer>
  124. <id>vshlos</id>
  125. <name>Vlad Shlosberg</name>
  126. <email>vshlos@linkedin.com</email>
  127. <organization>LinkedIn</organization>
  128. <organizationUrl>http://www.linkedin.com</organizationUrl>
  129. </developer>
  130. </developers>
  131. <distributionManagement>
  132. <repository>
  133. <id>bintray-linkedin-maven</id>
  134. <name>linkedin-maven</name>
  135. <url>https://api.bintray.com/maven/linkedin/maven/url-detector/;publish=1</url>
  136. </repository>
  137. </distributionManagement>
  138. </project>