-
Notifications
You must be signed in to change notification settings - Fork 25
/
pom.xml
100 lines (94 loc) · 4.03 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openmrs.owa</groupId>
<artifactId>addonmanager</artifactId>
<version>1.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>openmrs-owa-addonmanager</name>
<description>OpenMRS AddOn Manager OWA</description>
<scm>
<developerConnection>scm:git:git@github.com:openmrs/openmrs-owa-addonmanager</developerConnection>
<url>https://github.com/openmrs/openmrs-owa-addonmanager</url>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>deploy-snapshot</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<repositoryId>${project.distributionManagement.snapshotRepository.id}</repositoryId>
<url>${project.distributionManagement.snapshotRepository.url}</url>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<file>addonmanager-${project.version}.zip</file>
<packaging>zip</packaging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<repositoryId>${project.distributionManagement.repository.id}</repositoryId>
<url>${project.distributionManagement.repository.url}</url>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<file>addonmanager-${project.version}.zip</file>
<packaging>zip</packaging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>openmrs-repo</id>
<name>OpenMRS Nexus Repository</name>
<url>https://mavenrepo.openmrs.org/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>openmrs-repo</id>
<name>OpenMRS Nexus Repository</name>
<url>https://mavenrepo.openmrs.org/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>openmrs-repo-owa</id>
<name>OpenMRS OWAs</name>
<url>https://openmrs.jfrog.io/artifactory/owa/</url>
</repository>
<snapshotRepository>
<id>openmrs-repo-owa</id>
<name>OpenMRS OWA Snapshots</name>
<url>https://openmrs.jfrog.io/artifactory/owa-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>