Skip to content

Commit 7bb610f

Browse files
release
1 parent 55ad86b commit 7bb610f

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,15 @@
99
<version>1.0.0</version>
1010

1111
<name>split-openfeature-provider-java</name>
12+
<description>Split OpenFeature Java Provider</description>
1213
<url>www.split.io</url>
1314

15+
<scm>
16+
<connection>scm:git:git@github.com:splitio/split-openfeature-provider-java.git</connection>
17+
<developerConnection>scm:git@github.com:splitio/split-openfeature-provider-java.git</developerConnection>
18+
<url>git@github.com:splitio/split-openfeature-provider-java.git</url>
19+
</scm>
20+
1421
<developers>
1522
<developer>
1623
<name>Robert Grassian</name>
@@ -126,6 +133,57 @@
126133
<target>11</target>
127134
</configuration>
128135
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-javadoc-plugin</artifactId>
139+
<executions>
140+
<execution>
141+
<id>attach-javadocs</id>
142+
<goals>
143+
<goal>jar</goal>
144+
</goals>
145+
<configuration>
146+
<additionalJOptions>-Xdoclint:none</additionalJOptions>
147+
<source>1.8</source>
148+
</configuration>
149+
</execution>
150+
</executions>
151+
</plugin>
152+
<plugin>
153+
<groupId>org.sonatype.plugins</groupId>
154+
<artifactId>nexus-staging-maven-plugin</artifactId>
155+
<version>1.6.3</version>
156+
<extensions>true</extensions>
157+
<configuration>
158+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
159+
</configuration>
160+
</plugin>
161+
<plugin>
162+
<groupId>org.apache.maven.plugins</groupId>
163+
<artifactId>maven-source-plugin</artifactId>
164+
<executions>
165+
<execution>
166+
<id>attach-sources</id>
167+
<goals>
168+
<goal>jar</goal>
169+
</goals>
170+
</execution>
171+
</executions>
172+
</plugin>
173+
<plugin>
174+
<groupId>org.apache.maven.plugins</groupId>
175+
<artifactId>maven-gpg-plugin</artifactId>
176+
<version>1.5</version>
177+
<executions>
178+
<execution>
179+
<id>sign-artifacts</id>
180+
<phase>verify</phase>
181+
<goals>
182+
<goal>sign</goal>
183+
</goals>
184+
</execution>
185+
</executions>
186+
</plugin>
129187
</plugins>
130188
</build>
131189
</project>

0 commit comments

Comments
 (0)