-
Notifications
You must be signed in to change notification settings - Fork 84
/
pom.xml
115 lines (110 loc) · 3.58 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-ce-jar-parent-pom</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
</parent>
<groupId>pentaho</groupId>
<artifactId>pdi-dataservice-client</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dataservice client parent project</name>
<modules>
<module>pdi-dataservice-client-api</module>
<module>pdi-dataservice-client</module>
<module>assemblies</module>
</modules>
<scm>
<connection>scm:git:git@github.com:pentaho/${project.artifactId}.git</connection>
<developerConnection>scm:git:git@github.com:pentaho/${project.artifactId}.git</developerConnection>
<url>scm:git:git@github.com:pentaho/${project.artifactId}.git</url>
</scm>
<properties>
<mockito.version>5.10.0</mockito.version>
<commons.collections.version>3.2.2</commons.collections.version>
<pdi.version>10.3.0.0-SNAPSHOT</pdi.version>
<pentaho-metastore.version>10.3.0.0-SNAPSHOT</pentaho-metastore.version>
<rxjava.version>2.2.3</rxjava.version>
</properties>
<profiles>
<profile>
<id>aggregate-reporting</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-jxr</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-javadoc</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-checkstyle</id>
<reports>
<report>checkstyle-aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<repositories>
<repository>
<id>pentaho-public</id>
<name>Pentaho Public</name>
<url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:15</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>pentaho-public-plugins</id>
<name>Pentaho Public Plugins</name>
<url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
</project>