Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit e6e6f61

Browse files
authored
Update pom.xml
1 parent fa1cf19 commit e6e6f61

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

pom.xml

+40-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@
6969
<organizationUrl>http://www.microsoft.com/</organizationUrl>
7070
</developer>
7171
</developers>
72+
<distributionManagement>
73+
<snapshotRepository>
74+
<id>ossrh</id>
75+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
76+
</snapshotRepository>
77+
<repository>
78+
<id>ossrh</id>
79+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
80+
</repository>
81+
</distributionManagement>
7282
<build>
7383
<plugins>
7484
<plugin>
@@ -122,6 +132,35 @@
122132
</execution>
123133
</executions>
124134
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-javadoc-plugin</artifactId>
138+
</plugin>
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-source-plugin</artifactId>
142+
<version>3.0.1</version>
143+
<executions>
144+
<execution>
145+
<id>attach-sources</id>
146+
<phase>verify</phase>
147+
<goals>
148+
<goal>jar-no-fork</goal>
149+
</goals>
150+
</execution>
151+
</executions>
152+
</plugin>
153+
<plugin>
154+
<groupId>org.sonatype.plugins</groupId>
155+
<artifactId>nexus-staging-maven-plugin</artifactId>
156+
<version>1.6.8</version>
157+
<extensions>true</extensions>
158+
<configuration>
159+
<serverId>ossrh</serverId>
160+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
161+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
162+
</configuration>
163+
</plugin>
125164
<plugin>
126165
<groupId>org.scalastyle</groupId>
127166
<artifactId>scalastyle-maven-plugin</artifactId>
@@ -217,4 +256,4 @@
217256
</plugin>
218257
</plugins>
219258
</build>
220-
</project>
259+
</project>

0 commit comments

Comments
 (0)