-
Notifications
You must be signed in to change notification settings - Fork 26
/
pom.xml
102 lines (92 loc) · 2.89 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
101
102
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.mekomsolutions</groupId>
<artifactId>bahmni-docker-compose</artifactId>
<name>Bahmni Docker Compose</name>
<version>2.10.0-SNAPSHOT</version>
<packaging>pom</packaging>
<developers>
<developer>
<name>Mekom Solutions</name>
</developer>
</developers>
<organization>
<name>Mekom Solutions</name>
<url>http://www.mekomsolutions.com</url>
</organization>
<properties>
<distro.baseDir>${project.build.directory}/${project.artifactId}-${project.version}</distro.baseDir>
</properties>
<dependencies>
</dependencies>
<build>
<plugins>
<!-- packaging the distro as a installable/deployable file -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-distro-artifact</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}</directory>
<excludes>
<exclude>.gitignore</exclude>
<exclude>*override*</exclude>
<exclude>pom.xml</exclude>
<exclude>assembly.xml</exclude>
</excludes>
</resource>
</resources>
</configuration>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>mks-nexus</id>
<url>https://nexus.mekomsolutions.net/repository/maven-public</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<name>Mekom Solutions Nexus repo</name>
<id>mks-nexus</id>
<url>https://nexus.mekomsolutions.net/repository/maven-releases</url>
</repository>
<snapshotRepository>
<name>Mekom Solutions Nexus repo for snapshots</name>
<id>mks-nexus-snapshots</id>
<url>https://nexus.mekomsolutions.net/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>