forked from webdetails/cpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
174 lines (174 loc) · 6.32 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="UTF-8"?>
<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>1.1.9</version>
</parent>
<groupId>pentaho</groupId>
<artifactId>cpf-plugin</artifactId>
<version>7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>pentaho</module>
</modules>
<scm>
<connection>scm:git:[email protected]:webdetails/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:webdetails/${project.artifactId}.git</developerConnection>
<url>scm:git:[email protected]:webdetails/${project.artifactId}.git</url>
</scm>
<distributionManagement>
<site>
<id>pentaho.public.snapshot.repo</id>
<name>${project.artifactId}-${project.version}</name>
<url>dav:${site.publish.url}/${project.groupId}/cpf-plugin-${project.version}</url>
</site>
</distributionManagement>
<properties>
<dependency.springframework.revision>3.2.14.RELEASE</dependency.springframework.revision>
<dependency.commons-logging.revision>1.1.1</dependency.commons-logging.revision>
<dependency.json.revision>7.0-SNAPSHOT</dependency.json.revision>
<dependency.commons-io.revision>2.1</dependency.commons-io.revision>
<dependency.dom4j.revision>1.6.1</dependency.dom4j.revision>
<dependency.servlet-api.revision>2.4</dependency.servlet-api.revision>
<dependency.springsecurity.revision>2.0.8.RELEASE</dependency.springsecurity.revision>
<dependency.junit.revision>4.10</dependency.junit.revision>
<dependency.commons-lang.revision>2.6</dependency.commons-lang.revision>
<dependency.mockito-core.revision>1.9.5</dependency.mockito-core.revision>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${dependency.commons-io.revision}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${dependency.commons-logging.revision}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${dependency.commons-lang.revision}</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dependency.dom4j.revision}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${dependency.springframework.revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${dependency.springframework.revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${dependency.springframework.revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${dependency.springsecurity.revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${dependency.servlet-api.revision}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${dependency.json.revision}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dependency.junit.revision}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${dependency.mockito-core.revision}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<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>
<configuration>
<linkJavadoc>true</linkJavadoc>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-javadoc</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-checkstyle</id>
<reports>
<report>checkstyle-aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
<configuration>
<configLocation>${checkstyle-config-url}</configLocation>
<propertiesLocation>${checkstyle-properties-url}</propertiesLocation>
<linkXRef>true</linkXRef>
<cacheFile />
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>