-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
64 lines (64 loc) · 2.87 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
<?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>pl.satim</groupId>
<artifactId>dcs-satim-minesar</artifactId>
<packaging>pom</packaging>
<name>dcs-satim-minesar</name>
<parent>
<groupId>com.terradue</groupId>
<artifactId>dcs-bash-parent</artifactId>
<version>2.0.0</version>
</parent>
<description>Automatic detection and analysis of ground deformations within large areas based on the results of satellite SAR data processing
</description>
<version>1.0.0</version>
<properties>
<summary>MineSAR summary</summary>
<description>Automatic detection and analysis of ground deformations within large areas based on the results of satellite SAR data processing</description>
<community>geohazards-tep</community>
<yumRepo>geohazards-tep</yumRepo>
</properties>
<scm>
<connection>scm:git:ssh://git@github.com/geohazards-tep/dcs-satim-minesar</connection>
<developerConnection>scm:git:ssh://git@github.com/geohazards-tep/dcs-satim-minesar</developerConnection>
<url>https://github.com/geohazards-tep/dcs-satim-minesar</url>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>package-app</id>
<activation>
<property>
<name>env</name>
<value>ci</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-rpm</id>
<goals>
<goal>rpm</goal>
</goals>
<configuration>
<postinstallScriptlet combine.self="override">
<scriptFile>${basedir}/src/main/app-resources/script/postinstall.sh</scriptFile>
<fileEncoding>utf-8</fileEncoding>
</postinstallScriptlet>
<requires>
<require>wget</require>
</requires>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>