forked from jjlauer/cloudhopper-commons-charset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
59 lines (53 loc) · 1.95 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
<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.cloudhopper</groupId>
<artifactId>ch-commons-charset</artifactId>
<packaging>jar</packaging>
<version>3.0.1-SNAPSHOT</version>
<name>ch-commons-charset</name>
<description>Utility classes for converting between charsets (mostly "mobile" in nature) such as Unicode to GSM and vice versa</description>
<url>https://github.com/twitter/cloudhopper-commons-charset</url>
<inceptionYear>2012</inceptionYear>
<scm>
<url>https://github.com/twitter/cloudhopper-commons-charset</url>
<connection>scm:git:https://github.com/twitter/cloudhopper-commons-charset.git</connection>
<tag>HEAD</tag>
</scm>
<parent>
<groupId>com.cloudhopper</groupId>
<artifactId>ch-maven-parent-oss</artifactId>
<version>1.3</version>
</parent>
<dependencies>
<!-- compile scope -->
<dependency>
<groupId>com.cloudhopper</groupId>
<artifactId>ch-commons-util</artifactId>
<version>[6.0.0,)</version>
</dependency>
<!-- provided scope -->
<!-- runtime scope -->
<!-- testing scope -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<main.java.package>com.cloudhopper.commons.charset</main.java.package>
</properties>
</project>