forked from pentaho/pentaho-platform-plugin-common-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
148 lines (137 loc) · 4.88 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
<?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>10.3.0.0-SNAPSHOT</version>
</parent>
<artifactId>common-ui</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Common-UI root POM</name>
<description>Parent pom for Common-UI projects.</description>
<url>http://www.pentaho.com</url>
<modules>
<module>impl</module>
<module>assemblies</module>
</modules>
<scm>
<connection>scm:git:git@github.com:pentaho/pentaho-platform-plugin-common-ui.git</connection>
<developerConnection>scm:git:git@github.com:pentaho/pentaho-platform-plugin-common-ui.git</developerConnection>
<url>https://github.com/pentaho/pentaho-platform-plugin-common-ui</url>
</scm>
<properties>
<jquery-i18n-properties.version>1.0.9</jquery-i18n-properties.version>
<pentaho-cdf-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cdf-plugin.version>
<echarts.version>5.4.3</echarts.version>
<dompurify.version>3.1.5</dompurify.version>
<!-- Removed due to custom changes in the current common-ui version -->
<!-- (mainly the exporting of the Handlebars global variable) -->
<!--<handlebars.version>4.0.5</handlebars.version>-->
<angular.version>1.8.0</angular.version>
<uirouter-core.version>5.0.23</uirouter-core.version>
<uirouter-angularjs.version>1.0.22</uirouter-angularjs.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>dojo</artifactId>
<version>${dojo.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>dojox</artifactId>
<version>${dojo.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>dijit</artifactId>
<version>${dojo.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.bower</groupId>
<artifactId>jquery-i18n-properties</artifactId>
<version>${jquery-i18n-properties.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.bower</groupId>
<artifactId>angular</artifactId>
<version>${angular.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.bower</groupId>
<artifactId>angular-animate</artifactId>
<version>${angular.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>angular-i18n</artifactId>
<version>${angular.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>uirouter__core</artifactId>
<version>${uirouter-core.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>uirouter__angularjs</artifactId>
<version>${uirouter-angularjs.version}</version>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>pentaho-cdf-js</artifactId>
<version>${pentaho-cdf-plugin.version}</version>
<type>zip</type>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>echarts</artifactId>
<version>${echarts.version}</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>dompurify</artifactId>
<version>${dompurify.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<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>