Skip to content

Commit 1586f86

Browse files
committed
Merge branch 'develop'
2 parents 7b4daa4 + 314d117 commit 1586f86

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+25967
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

pom.xml

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
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.opensergo</groupId>
8+
<artifactId>opensergo-java</artifactId>
9+
<version>0.0.1-SNAPSHOT</version>
10+
11+
<name>OpenSergo SDK for Java</name>
12+
<url>http://opensergo.io</url>
13+
<licenses>
14+
<license>
15+
<name>The Apache Software License, Version 2.0</name>
16+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
17+
<distribution>repo</distribution>
18+
</license>
19+
</licenses>
20+
<scm>
21+
<connection>scm:git:git@github.com:opensergo/opensergo-java.git</connection>
22+
<developerConnection>scm:git:git@github.com:opensergo/opensergo-java.git</developerConnection>
23+
<url>https://github.com/opensergo/opensergo-java</url>
24+
</scm>
25+
<developers>
26+
<developer>
27+
<name>luyanbo</name>
28+
<email>robert.lyb@alibaba-inc.com</email>
29+
</developer>
30+
</developers>
31+
32+
<properties>
33+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34+
<maven.compiler.source>1.8</maven.compiler.source>
35+
<maven.compiler.target>1.8</maven.compiler.target>
36+
37+
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
38+
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
39+
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
40+
</properties>
41+
42+
<dependencies>
43+
<dependency>
44+
<groupId>javax.annotation</groupId>
45+
<artifactId>javax.annotation-api</artifactId>
46+
<version>1.3.2</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>io.grpc</groupId>
50+
<artifactId>grpc-stub</artifactId>
51+
<version>1.44.1</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>io.grpc</groupId>
55+
<artifactId>grpc-protobuf</artifactId>
56+
<version>1.44.1</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>junit</groupId>
60+
<artifactId>junit</artifactId>
61+
<version>4.13.2</version>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.google.protobuf</groupId>
66+
<artifactId>protobuf-java-util</artifactId>
67+
<version>3.19.4</version>
68+
<scope>test</scope>
69+
</dependency>
70+
</dependencies>
71+
72+
<build>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-source-plugin</artifactId>
77+
<version>3.2.1</version>
78+
<executions>
79+
<execution>
80+
<id>attach-sources</id>
81+
<goals>
82+
<goal>jar</goal>
83+
</goals>
84+
</execution>
85+
</executions>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-compiler-plugin</artifactId>
90+
<executions>
91+
<execution>
92+
<id>compile</id>
93+
<phase>compile</phase>
94+
<goals>
95+
<goal>compile</goal>
96+
</goals>
97+
</execution>
98+
<execution>
99+
<id>testCompile</id>
100+
<phase>test-compile</phase>
101+
<goals>
102+
<goal>testCompile</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
<configuration>
107+
<source>8</source>
108+
<target>8</target>
109+
</configuration>
110+
</plugin>
111+
</plugins>
112+
</build>
113+
114+
<distributionManagement>
115+
<snapshotRepository>
116+
<id>github</id>
117+
<name>GitHub OWNER Apache Maven Packages</name>
118+
<url>https://maven.pkg.github.com/opensergo/opensergo-java</url>
119+
</snapshotRepository>
120+
<repository>
121+
<id>sonatype-nexus-staging</id>
122+
<name>Nexus Release Repository</name>
123+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
124+
</repository>
125+
</distributionManagement>
126+
</project>

0 commit comments

Comments
 (0)