forked from wxingyl/search-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
110 lines (101 loc) · 3.75 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<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.tqmall.search</groupId>
<artifactId>commons</artifactId>
<version>2.0</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<description>some search common utils, such as segment,canal client and so on</description>
<name>Search Commons Maven Parent</name>
<scm>
<connection>scm:git:https://github.com/wxingyl/search-commons.git</connection>
<developerConnection>scm:git:https://github.com/wxingyl/search-commons.git</developerConnection>
<url>https://github.com/wxingyl/search-commons</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/wxingyl/search-commons.issues</url>
</issueManagement>
<developers>
<developer>
<name>Xingxing Wang</name>
<email>[email protected]</email>
<organization>tqmall</organization>
<organizationUrl>http://www.tqmall.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<properties>
<lang.version>1.0</lang.version>
<component.version>1.0-SNAPSHOT</component.version>
<junit.version>4.12</junit.version>
<slf4j-version>1.7.12</slf4j-version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>commons-lang</module>
<module>commons-component</module>
<module>commons-nlp</module>
<module>commons-cache</module>
<module>canal-client</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>tqmall-snapshots</id>
<name>tqmall snapshots</name>
<url>http://build.tqmall.com/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>tqmall-releases</id>
<name>tqmall releases</name>
<url>http://build.tqmall.com/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>
</project>