-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
47 lines (38 loc) · 1.47 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>SevenZip</groupId>
<artifactId>SevenZip</artifactId>
<version>9.20</version>
<packaging>jar</packaging>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.3</version>
</extension>
</extensions>
</build>
<distributionManagement>
<repository>
<!-- These settings are here only as an example. You need to
change them to your repository name and url. Make sure you
edit your ~/.m2/settings.xml and add your username and password:
<settings>
<servers>
<server>
<id>your-repository-name-here</id>
<username>your-username</username>
<password>your-password</password>
</server>
</servers>
</settings>
Then you can type "mvn deploy" to upload the artifact to your
maven repository.
-->
<id>your-repository-name-here</id>
<url>scp://example.com/home/www/maven2</url>
</repository>
</distributionManagement>
</project>