|
1 | 1 | <?xml version="1.0"?> |
2 | 2 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>io.github.dunwu</groupId> |
6 | | - <artifactId>javadb-hbase</artifactId> |
7 | | - <version>1.0.0</version> |
8 | | - <packaging>jar</packaging> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | + xmlns="http://maven.apache.org/POM/4.0.0"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>io.github.dunwu</groupId> |
| 7 | + <artifactId>javadb-hbase</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + <packaging>jar</packaging> |
9 | 10 |
|
10 | | - <properties> |
11 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | | - <java.version>1.8</java.version> |
13 | | - <maven.compiler.source>${java.version}</maven.compiler.source> |
14 | | - <maven.compiler.target>${java.version}</maven.compiler.target> |
| 11 | + <properties> |
| 12 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | + <java.version>1.8</java.version> |
| 14 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 15 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
15 | 16 |
|
16 | | - <hbase.version>1.3.1</hbase.version> |
17 | | - <junit.version>4.12</junit.version> |
18 | | - <dunwu.version>0.4.1</dunwu.version> |
19 | | - </properties> |
| 17 | + <hbase.version>1.3.1</hbase.version> |
| 18 | + <junit.version>4.12</junit.version> |
| 19 | + <dunwu.version>0.4.1</dunwu.version> |
| 20 | + </properties> |
20 | 21 |
|
21 | | - <dependencies> |
22 | | - <dependency> |
23 | | - <groupId>org.apache.hbase</groupId> |
24 | | - <artifactId>hbase-client</artifactId> |
25 | | - </dependency> |
26 | | - <dependency> |
27 | | - <groupId>io.github.dunwu</groupId> |
28 | | - <artifactId>dunwu-common</artifactId> |
29 | | - </dependency> |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.apache.hbase</groupId> |
| 25 | + <artifactId>hbase-client</artifactId> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>io.github.dunwu</groupId> |
| 29 | + <artifactId>dunwu-common</artifactId> |
| 30 | + </dependency> |
30 | 31 |
|
31 | | - <!-- test begin --> |
32 | | - <dependency> |
33 | | - <groupId>junit</groupId> |
34 | | - <artifactId>junit</artifactId> |
35 | | - </dependency> |
36 | | - <!-- test end --> |
37 | | - </dependencies> |
| 32 | + <!-- test begin --> |
| 33 | + <dependency> |
| 34 | + <groupId>junit</groupId> |
| 35 | + <artifactId>junit</artifactId> |
| 36 | + </dependency> |
| 37 | + <!-- test end --> |
| 38 | + </dependencies> |
38 | 39 |
|
39 | | - <dependencyManagement> |
40 | | - <dependencies> |
41 | | - <dependency> |
42 | | - <groupId>org.apache.hbase</groupId> |
43 | | - <artifactId>hbase-client</artifactId> |
44 | | - <version>${hbase.version}</version> |
45 | | - </dependency> |
46 | | - <dependency> |
47 | | - <groupId>io.github.dunwu</groupId> |
48 | | - <artifactId>dunwu-common</artifactId> |
49 | | - <version>${dunwu.version}</version> |
50 | | - </dependency> |
| 40 | + <dependencyManagement> |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>org.apache.hbase</groupId> |
| 44 | + <artifactId>hbase-client</artifactId> |
| 45 | + <version>${hbase.version}</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>io.github.dunwu</groupId> |
| 49 | + <artifactId>dunwu-common</artifactId> |
| 50 | + <version>${dunwu.version}</version> |
| 51 | + </dependency> |
51 | 52 |
|
52 | | - <!-- test begin --> |
53 | | - <dependency> |
54 | | - <groupId>junit</groupId> |
55 | | - <artifactId>junit</artifactId> |
56 | | - <version>${junit.version}</version> |
57 | | - <scope>test</scope> |
58 | | - </dependency> |
59 | | - <!-- test end --> |
60 | | - </dependencies> |
61 | | - </dependencyManagement> |
| 53 | + <!-- test begin --> |
| 54 | + <dependency> |
| 55 | + <groupId>junit</groupId> |
| 56 | + <artifactId>junit</artifactId> |
| 57 | + <version>${junit.version}</version> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <!-- test end --> |
| 61 | + </dependencies> |
| 62 | + </dependencyManagement> |
62 | 63 | </project> |
0 commit comments