Skip to content

Commit f9bd06c

Browse files
committed
Added deployment config to pom
1 parent 2ccc6e7 commit f9bd06c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,31 @@
2626
<target>8</target>
2727
</configuration>
2828
</plugin>
29+
<plugin>
30+
<artifactId>maven-deploy-plugin</artifactId>
31+
<version>3.0.0-M1</version>
32+
<executions>
33+
<execution>
34+
<id>default-deploy</id>
35+
<phase>deploy</phase>
36+
<goals>
37+
<goal>deploy</goal>
38+
</goals>
39+
</execution>
40+
</executions>
41+
</plugin>
2942
</plugins>
3043
</build>
3144

45+
<distributionManagement>
46+
<snapshotRepository>
47+
<id>javawebstack-snapshots</id>
48+
<url>https://nexus.javawebstack.org/repository/javawebstack-snapshots</url>
49+
</snapshotRepository>
50+
<repository>
51+
<id>javawebstack-releases</id>
52+
<url>https://nexus.javawebstack.org/repository/javawebstack-releases</url>
53+
</repository>
54+
</distributionManagement>
3255

3356
</project>

0 commit comments

Comments
 (0)