77 <groupId >org.sqlflow</groupId >
88 <artifactId >jsqlflow</artifactId >
99 <packaging >jar</packaging >
10- <version >1.0-SNAPSHOT </version >
10+ <version >0.0.1 </version >
1111 <name >jsqlflow</name >
12+ <description >SQLFlow client</description >
1213 <url >https://github.com/sql-machine-learning/jsqlflow</url >
1314
1415 <properties >
1920 <maven .compiler.target>1.8</maven .compiler.target>
2021 <maven .compiler.source>1.8</maven .compiler.source>
2122 </properties >
23+
2224 <dependencies >
2325 <dependency >
2426 <groupId >io.grpc</groupId >
6971 <version >1.6.2</version >
7072 </extension >
7173 </extensions >
74+
7275 <plugins >
76+ <plugin >
77+ <groupId >org.apache.maven.plugins</groupId >
78+ <artifactId >maven-javadoc-plugin</artifactId >
79+ <executions >
80+ <execution >
81+ <id >attach-javadocs</id >
82+ <goals >
83+ <goal >jar</goal >
84+ </goals >
85+ </execution >
86+ </executions >
87+ </plugin >
88+
7389 <plugin >
7490 <groupId >org.xolstice.maven.plugins</groupId >
7591 <artifactId >protobuf-maven-plugin</artifactId >
90106 </execution >
91107 </executions >
92108 </plugin >
109+
93110 <plugin >
94111 <groupId >org.apache.maven.plugins</groupId >
95112 <artifactId >maven-enforcer-plugin</artifactId >
108125 </execution >
109126 </executions >
110127 </plugin >
128+
129+ <plugin >
130+ <groupId >org.sonatype.plugins</groupId >
131+ <artifactId >nexus-staging-maven-plugin</artifactId >
132+ <version >1.6.8</version >
133+ <extensions >true</extensions >
134+ <configuration >
135+ <serverId >sonatype_releases</serverId >
136+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
137+ <autoReleaseAfterClose >false</autoReleaseAfterClose >
138+ </configuration >
139+ </plugin >
140+
141+ <plugin >
142+ <groupId >org.apache.maven.plugins</groupId >
143+ <artifactId >maven-source-plugin</artifactId >
144+ <version >3.2.0</version >
145+ <executions >
146+ <execution >
147+ <id >attach-sources</id >
148+ <goals >
149+ <goal >jar-no-fork</goal >
150+ </goals >
151+ </execution >
152+ </executions >
153+ </plugin >
154+
155+ <plugin >
156+ <groupId >org.apache.maven.plugins</groupId >
157+ <artifactId >maven-gpg-plugin</artifactId >
158+ <version >1.6</version >
159+ <executions >
160+ <execution >
161+ <id >gpg</id >
162+ <phase >verify</phase >
163+ <goals >
164+ <goal >sign</goal >
165+ </goals >
166+ </execution >
167+ </executions >
168+ </plugin >
111169 </plugins >
112170 </build >
171+
172+ <licenses >
173+ <license >
174+ <name >The Apache Software License, Version 2.0</name >
175+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
176+ <distribution >repo</distribution >
177+ </license >
178+ </licenses >
179+
180+ <scm >
181+ <url >https://github.com/sql-machine-learning/jsqlflow/tree/develop</url >
182+ </scm >
183+
184+ <developers >
185+ <developer >
186+ <name >weiguoz</name >
187+ 188+ <organization >http://sqlflow.org/</organization >
189+ <timezone >+8</timezone >
190+ </developer >
191+ </developers >
192+
193+ <distributionManagement >
194+ <repository >
195+ <id >sonatype_releases</id >
196+ <name >Nexus Release Repository</name >
197+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2</url >
198+ </repository >
199+ <snapshotRepository >
200+ <id >sonatype_snapshots</id >
201+ <name >Nexus Snapshot Repository</name >
202+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
203+ </snapshotRepository >
204+ </distributionManagement >
113205</project >
0 commit comments