123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.linkedin.urls</groupId>
- <artifactId>url-detector</artifactId>
- <version>0.2.3-alpha</version>
- <packaging>jar</packaging>
- <name>com.linkedin.urls:url-detector</name>
- <description>A Java library to detect and normalize URLs in text</description>
- <url>https://github.com/linkedin/URL-Detector</url>
- <licenses>
- <license>
- <name>The Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
- <scm>
- <connection>scm:git:git://github.com/linkedin/URL-Detector.git</connection>
- <developerConnection>scm:git:ssh://github.com:linkedin/URL-Detector.git</developerConnection>
- <url>https://github.com/linkedin/URL-Detector/tree/master</url>
- </scm>
-
- <dependencies>
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>6.1.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.3.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <source>11</source>
- <target>11</target>
- <testSource>11</testSource>
- <testTarget>11</testTarget>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.4</version>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>false</skip>
- </configuration>
- </plugin>
- <!--plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>default-deploy</id>
- <phase>deploy</phase>
- <goals>
- <goal>deploy</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <serverId>ossrh</serverId>
- <nexusUrl>https://oss.sonatype.org/</nexusUrl>
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
- </configuration>
- </plugin!-->
- </plugins>
- </build>
- <developers>
- <developer>
- <id>tjan</id>
- <name>Tzu-Han Jan</name>
- <email>tjan@linkedin.com</email>
- <organization>LinkedIn</organization>
- <organizationUrl>http://www.linkedin.com</organizationUrl>
- </developer>
- <developer>
- <id>vshlos</id>
- <name>Vlad Shlosberg</name>
- <email>vshlos@linkedin.com</email>
- <organization>LinkedIn</organization>
- <organizationUrl>http://www.linkedin.com</organizationUrl>
- </developer>
- </developers>
- <distributionManagement>
- <repository>
- <id>bintray-linkedin-maven</id>
- <name>linkedin-maven</name>
- <url>https://api.bintray.com/maven/linkedin/maven/url-detector/;publish=1</url>
- </repository>
- </distributionManagement>
- </project>
|