forked from iplot-viz/mint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
92 lines (86 loc) · 3.6 KB
/
pom.xml
File metadata and controls
92 lines (86 loc) · 3.6 KB
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
<!--
Project : CODAC Core System
Description : CODAC Core System unit templates
Authors : Anze Zagar
Copyright (c) : 2010-2024 ITER Organization,
CS 90 046
13067 St. Paul-lez-Durance Cedex
France
This file is part of ITER CODAC software.
For the terms and conditions of redistribution or use of this software
refer to the file ITER-LICENSE.TXT located in the top level directory
of the distribution package.
-->
<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.iter.codac.units</groupId>
<artifactId>mint</artifactId>
<packaging>codac</packaging>
<name>CODAC Core System Python3 plotting library which support Qt backend</name>
<version>1.3.0</version>
<description>CODAC Core System Python 1-D tool for time traces</description>
<url>http://www.iter.org/</url>
<!-- parent pom.xml -->
<parent>
<groupId>org.iter.codac.units</groupId>
<artifactId>maven-iter-settings</artifactId>
<version>7.3.0</version>
</parent>
<licenses>
</licenses>
<!-- project properties -->
<properties>
<unit.type>module</unit.type>
<sonar.sources.python>util,widgets</sonar.sources.python>
</properties>
<!-- unit owner and developers -->
<developers>
<developer>
<id>abadiel</id>
<roles>
<role>unit owner</role>
</roles>
</developer>
<developer>
<id>panchuj</id>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<!-- configuration of how the project is built -->
<build>
<!-- default phase is compile -->
<!-- this command is executed if you just write 'mvn' -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-iter-plugin</artifactId>
<configuration>
<init>
<copy source="mint" target="mint/mint"/>
<copy source="setup.py" target="mint/setup.py"/>
<copy source="requirements.txt" target="mint/requirements.txt"/>
<copy source="default_mint_env" target="mint/default_mint_env"/>
<expand source="mint/_version.py" file="mint/mint/_version.py" rpmeval="true" mvneval="true" />
</init>
<packaging>
<package>
<requires codac="true">python3.11-modules</requires>
<obsoletes codac="true" >protoplot-pyqt5</obsoletes>
<requires codac="true">iplotlib-qt</requires>
<requires >libicu</requires>
<requires codac="true">iplotDataAccess</requires>
<requires codac="true">iplotLogging</requires>
<requires codac="true">iplotWidgets</requires>
<include type="python" python="python311" wheel="setup.py" />
<!--include type="file" source="mint" target="apps/mint"/-->
<include type="config" source="mint/default_mint_env" targetroot="CODAC_CONF" target="env.d/mint" />
<include type="config" source="mint/mint/mydatasources.cfg" targetroot="CODAC_CONF" target="mint/datasources_def.cfg" />
</package>
</packaging>
</configuration>
</plugin>
</plugins>
</build>
</project>