-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
168 lines (148 loc) · 5.15 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2024 Bloomreach, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS"
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.onehippo.cms7</groupId>
<artifactId>hippo-cms7-project</artifactId>
<version>16.0.0</version>
</parent>
<name>Bloomreach Forge IFramePerspective Plugin</name>
<description>Bloomreach Forge IFramePerspective Plugin</description>
<groupId>org.bloomreach.forge.iframeperspective</groupId>
<artifactId>iframeperspective</artifactId>
<version>7.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<url>https://bloomreach-forge.github.io/iframe-perspective/</url>
<properties>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Jeroen Hoffman</name>
<id>wko</id>
<email>jeroen.hoffman @ bloomreach . com</email>
<organization>Bloomreach</organization>
<roles>
<role>Java Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:bloomreach-forge/iframe-perspective.git</connection>
<developerConnection>scm:git:git@github.com:bloomreach-forge/iframe-perspective.git</developerConnection>
<url>https://github.com/bloomreach-forge/iframe-perspective.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Jira</system>
<url>https://issues.onehippo.com/browse/FORGE</url>
</issueManagement>
<distributionManagement>
<repository>
<name>Bloomreach Maven 2 Forge Repository</name>
<id>bloomreach-maven2-forge</id>
<url>https://maven.bloomreach.com/content/repositories/forge-releases/</url>
<uniqueVersion>false</uniqueVersion>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>bloomreach-maven2</id>
<name>Bloomreach maven 2 repository.</name>
<url>https://maven.bloomreach.com/repository/maven2/</url>
</repository>
<repository>
<id>bloomreach-maven2-forge</id>
<name>Bloomreach Maven 2 Forge repository</name>
<url>https://maven.bloomreach.com/repository/maven2-forge/</url>
<snapshots />
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.onehippo.cms7</groupId>
<artifactId>hippo-cms-api</artifactId>
<version>${hippo.release.version}</version>
<scope>provided</scope>
<exclusions>
<!-- Exclude this since it makes errors in project-info report generation. -->
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
</reporting>
<build>
<defaultGoal>package</defaultGoal>
</build>
<profiles>
<!-- Only for generating/publishing GitHub Site Pages into docs/ folder from master branch. -->
<profile>
<id>github.pages</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.plugin.site.version}</version>
<configuration>
<outputDirectory>docs</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dist</id>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>