-
Notifications
You must be signed in to change notification settings - Fork 293
/
pom.xml
executable file
·43 lines (43 loc) · 1.78 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>weasis-parent</artifactId>
<groupId>org.weasis</groupId>
<!--suppress MavenPropertyInParent -->
<version>${revision}${changelist}</version>
<relativePath>weasis-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>weasis-framework</artifactId>
<packaging>pom</packaging>
<name>Weasis framework</name>
<scm>
<connection>scm:git:git@github.com:nroduit/Weasis.git</connection>
<developerConnection>scm:git:https://weasis.repositoryhosting.com/git/weasis/weasis-dev.git
</developerConnection>
<url>https://github.com/nroduit/Weasis</url>
</scm>
<properties>
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
<sonar.organization>nroduit-github</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.language>java</sonar.language>
<sonar.java.source>${java-version}</sonar.java.source>
<sonar.test.exclusions>src/test/**/*</sonar.test.exclusions>
<!--suppress UnresolvedMavenProperty -->
<sonar.coverage.jacoco.xmlReportPaths>${maven.multiModuleProjectDirectory}/tests/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<modules>
<module>weasis-parent</module>
<module>weasis-opencv</module>
<module>weasis-core</module>
<module>weasis-imageio</module>
<module>weasis-base</module>
<module>weasis-dicom</module>
<module>weasis-acquire</module>
<module>weasis-launcher</module>
<module>tests</module>
</modules>
</project>