OSDN Git Service

commit java sdk doc and source code
[bytom/bytom-java-sdk.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>io.bytom</groupId>
8     <artifactId>bytom-sdk-java</artifactId>
9     <version>1.0-SNAPSHOT</version>
10     <packaging>jar</packaging>
11
12     <name>bytom-sdk-java</name>
13     <!-- FIXME change it to the project's website -->
14     <url>http://www.example.com</url>
15
16     <!--
17     <developers>
18         <developer>
19             <name>successli</name>
20             <email>successli@outlook.com</email>
21             <url>https://github.com/successli</url>
22         </developer>
23     </developers>
24     -->
25
26     <properties>
27         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28     </properties>
29
30     <dependencies>
31         <dependency>
32             <groupId>junit</groupId>
33             <artifactId>junit</artifactId>
34             <version>4.12</version>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>log4j</groupId>
39             <artifactId>log4j</artifactId>
40             <version>1.2.17</version>
41         </dependency>
42         <dependency>
43             <groupId>com.squareup.okhttp</groupId>
44             <artifactId>okhttp</artifactId>
45             <version>2.5.0</version>
46         </dependency>
47         <dependency>
48             <groupId>com.squareup.okhttp</groupId>
49             <artifactId>mockwebserver</artifactId>
50             <version>2.5.0</version>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>com.google.code.gson</groupId>
55             <artifactId>gson</artifactId>
56             <version>2.8.0</version>
57         </dependency>
58         <dependency>
59             <groupId>org.bouncycastle</groupId>
60             <artifactId>bcpkix-jdk15on</artifactId>
61             <version>1.56</version>
62         </dependency>
63     </dependencies>
64
65     <distributionManagement>
66         <snapshotRepository>
67             <id>ossrh</id>
68             <url>https://oss.sonatype.org/content/repositories/snapshots</url>
69         </snapshotRepository>
70         <repository>
71             <id>ossrh</id>
72             <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
73         </repository>
74     </distributionManagement>
75
76     <build>
77         <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
78             <plugins>
79                 <plugin>
80                     <artifactId>maven-clean-plugin</artifactId>
81                     <version>3.0.0</version>
82                 </plugin>
83                 <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
84                 <plugin>
85                     <artifactId>maven-resources-plugin</artifactId>
86                     <version>3.0.2</version>
87                 </plugin>
88                 <plugin>
89                     <artifactId>maven-compiler-plugin</artifactId>
90                     <version>3.7.0</version>
91                 </plugin>
92                 <plugin>
93                     <artifactId>maven-surefire-plugin</artifactId>
94                     <version>2.20.1</version>
95                 </plugin>
96                 <plugin>
97                     <artifactId>maven-jar-plugin</artifactId>
98                     <version>3.0.2</version>
99                 </plugin>
100                 <plugin>
101                     <artifactId>maven-install-plugin</artifactId>
102                     <version>2.5.2</version>
103                 </plugin>
104                 <plugin>
105                     <artifactId>maven-deploy-plugin</artifactId>
106                     <version>2.8.2</version>
107                 </plugin>
108             </plugins>
109         </pluginManagement>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-compiler-plugin</artifactId>
114                 <configuration>
115                     <source>7</source>
116                     <target>7</target>
117                 </configuration>
118             </plugin>
119         </plugins>
120     </build>
121 </project>