Skip to content

Commit 305aa0d

Browse files
authored
Add distribution management section (#4)
Configures QBiCs Maven repository for deployment.
1 parent 990b2fc commit 305aa0d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,24 @@
4848
</dependency>
4949
</dependencies>
5050

51+
<!-- This configures the target artifact repositories for deployment
52+
and is used by Maven's 'deploy' goal.
53+
So if you call 'mvn clean package deploy', it will end up there: -->
54+
<distributionManagement>
55+
<repository>
56+
<uniqueVersion>true</uniqueVersion>
57+
<id>nexus-releases</id>
58+
<name>QBiC Releases</name>
59+
<url>https://qbic-repo.qbic.uni-tuebingen.de/repository/maven-releases</url>
60+
</repository>
61+
<snapshotRepository>
62+
<uniqueVersion>false</uniqueVersion>
63+
<id>nexus-snapshots</id>
64+
<name>QBiC Snapshots</name>
65+
<url>https://qbic-repo.qbic.uni-tuebingen.de/repository/maven-snapshots</url>
66+
</snapshotRepository>
67+
</distributionManagement>
68+
5169
<build>
5270
<plugins>
5371
<plugin>

0 commit comments

Comments
 (0)