Skip to content

Commit 912fe41

Browse files
committed
maven
1 parent 2066bfa commit 912fe41

File tree

1 file changed

+39
-2
lines changed

1 file changed

+39
-2
lines changed

pom.xml

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,35 @@
88
<artifactId>lambda-query</artifactId>
99
<version>1.0</version>
1010
<name>lambda-query</name>
11-
<description>Demo project for Spring Boot</description>
11+
<url>https://gitee.com/xuejike/lambda-query.git</url>
12+
13+
<description>query all in lambda</description>
1214
<modules>
1315
<module>lambda-query-core</module>
1416
<module>lambda-query-mongo</module>
1517
<module>mongo-demo</module>
1618
</modules>
19+
<licenses>
20+
<license>
21+
<name>GNU General Public License v2.0</name>
22+
<url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
23+
<distribution>repo</distribution>
24+
</license>
25+
</licenses>
26+
27+
<scm>
28+
<tag>master</tag>
29+
<url>https://gitee.com/xuejike/lambda-query.git</url>
30+
<connection>scm:git:https://gitee.com/xuejike/lambda-query.git</connection>
31+
<developerConnection>scm:git:https://gitee.com/xuejike/lambda-query.git</developerConnection>
32+
</scm>
33+
<developers>
34+
<developer>
35+
<name>xuejike</name>
36+
<email>245674286@qq.com</email>
37+
<organization>xuejike</organization>
38+
</developer>
39+
</developers>
1740
<properties>
1841
<maven.compiler.source>1.8</maven.compiler.source>
1942
<maven.compiler.target>1.8</maven.compiler.target>
@@ -35,6 +58,7 @@
3558
</distributionManagement>
3659
<build>
3760
<plugins>
61+
3862
<plugin>
3963
<groupId>org.sonatype.plugins</groupId>
4064
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -106,7 +130,20 @@
106130
</execution>
107131
</executions>
108132
</plugin>
109-
133+
<plugin>
134+
<groupId>org.apache.maven.plugins</groupId>
135+
<artifactId>maven-gpg-plugin</artifactId>
136+
<version>1.5</version>
137+
<executions>
138+
<execution>
139+
<id>sign-artifacts</id>
140+
<phase>verify</phase>
141+
<goals>
142+
<goal>sign</goal>
143+
</goals>
144+
</execution>
145+
</executions>
146+
</plugin>
110147
</plugins>
111148
</build>
112149

0 commit comments

Comments
 (0)