-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
19 lines (19 loc) · 1.1 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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/xsd/maven-4.0.0.xsd">
<!-- Required for sonar scan only, not for building/testing/deploying the Python module. -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.acumos.python-model-runner</groupId>
<artifactId>python-model-runner</artifactId>
<version>0.2.6</version> <!-- REPEATED IN acumos_model_runner/_version.py MUST MATCH -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.sources>.</sonar.sources>
<sonar.junit.reportsPath>xunit-results.xml</sonar.junit.reportsPath>
<sonar.python.coverage.reportPath>coverage.xml</sonar.python.coverage.reportPath>
<sonar.language>py</sonar.language>
<sonar.pluginname>python</sonar.pluginname>
<sonar.inclusions>**/**.py</sonar.inclusions>
<sonar.exclusions>**/tests/**.py,**/test*.py</sonar.exclusions>
</properties>
</project>