Skip to content

Commit 80ff3dc

Browse files
committed
Modifying configuration file information
1 parent d75dea2 commit 80ff3dc

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

trackingmore-sdk/pom.xml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,86 @@
3838
</dependency>
3939
</dependencies>
4040

41+
<licenses>
42+
<license>
43+
<name>The Apache Software License, Version 2.0</name>
44+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
45+
</license>
46+
</licenses>
47+
48+
<developers>
49+
<developer>
50+
<name>trackingmore</name>
51+
<email>manage@trackingmore.org</email>
52+
</developer>
53+
</developers>
54+
55+
<scm>
56+
<connection>scm:git:git@github.com:trackingmores/trackingmore-sdk-java.git</connection>
57+
<developerConnection>scm:git:git@github.com:trackingmores/trackingmore-sdk-java.git</developerConnection>
58+
<url>git@github.com:trackingmores/trackingmore-sdk-java.git</url>
59+
</scm>
60+
61+
<profiles>
62+
<profile>
63+
<id>release</id>
64+
<build>
65+
<plugins>
66+
<!-- Source -->
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-source-plugin</artifactId>
70+
<version>2.2.1</version>
71+
<executions>
72+
<execution>
73+
<phase>package</phase>
74+
<goals>
75+
<goal>jar-no-fork</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
<!-- Javadoc -->
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-javadoc-plugin</artifactId>
84+
<version>2.9.1</version>
85+
<executions>
86+
<execution>
87+
<phase>package</phase>
88+
<goals>
89+
<goal>jar</goal>
90+
</goals>
91+
</execution>
92+
</executions>
93+
</plugin>
94+
<!-- GPG -->
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-gpg-plugin</artifactId>
98+
<version>1.5</version>
99+
<executions>
100+
<execution>
101+
<phase>verify</phase>
102+
<goals>
103+
<goal>sign</goal>
104+
</goals>
105+
</execution>
106+
</executions>
107+
</plugin>
108+
</plugins>
109+
</build>
110+
<distributionManagement>
111+
<snapshotRepository>
112+
<id>oss</id>
113+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
114+
</snapshotRepository>
115+
<repository>
116+
<id>oss</id>
117+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
118+
</repository>
119+
</distributionManagement>
120+
</profile>
121+
</profiles>
122+
41123
</project>

0 commit comments

Comments
 (0)