-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
67 lines (67 loc) · 3 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
<?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>com.terradue</groupId>
<artifactId>dcs-rss-band-combination</artifactId>
<packaging>pom</packaging>
<name>dcs-rss-band-combination</name>
<parent>
<groupId>com.terradue</groupId>
<artifactId>dcs-bash-parent</artifactId>
<version>2.0.0</version>
</parent>
<description>The Band Combination on-demand processing service provides RGB band combination from user defined bands of single or multiple EO data products. All bands are in their native format (no radiometric correction applied) thus can serve only for fast screening of the data, not for further processing.</description>
<version>1.41.1</version>
<properties>
<summary>Band combination</summary>
<description>The Band Combination on-demand processing service provides RGB band combination from user defined bands of single or multiple EO data products. All bands are in their native format (no radiometric correction applied) thus can serve only for fast screening of the data, not for further processing.</description>
<community>geohazards-tep</community>
<yumRepo>geohazards-tep</yumRepo>
</properties>
<scm>
<connection>scm:git:ssh://git@github.com/geohazards-tep/dcs-rss-band-combination</connection>
<developerConnection>scm:git:ssh://git@github.com/geohazards-tep/dcs-rss-band-combination</developerConnection>
<url>https://github.com/geohazards-tep/dcs-rss-band-combination</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>
<!-- Set here the dependencies installed with 'sudo yum install'-->
<requires>
<require>snap6</require>
<require>miniconda</require>
<require>openjpeg2</require>
<require>proj-devel</require>
<require>OTB</require>
</requires>
<postinstallScriptlet combine.self="override">
<script>conda update conda -y && conda install --file /application/dependencies/packages.list</script>
</postinstallScriptlet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>