Skip to content

Commit 161f8ec

Browse files
committed
[url-detector] Added pom.xml, uploaded to maven central
1 parent 2a0fede commit 161f8ec

File tree

4 files changed

+155
-1
lines changed

4 files changed

+155
-1
lines changed

‎.gitignore‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
target/
2+
.DS_STORE
3+
.gradle
4+
.idea
5+
*.iml

‎CHANGELOG.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
v0.1.17
2+
------
3+
4+
* Added pom.xml, uploaded to maven central

‎gradle.properties‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Version
2-
version=0.1.16
2+
version=0.1.17
33

44
#long-running Gradle process speeds up local builds
55
#to stop the daemon run 'ligradle --stop'

‎url-detector/pom.xml‎

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

0 commit comments

Comments
 (0)