-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
92 lines (82 loc) · 2.43 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
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>nl.isaac.dotcms.plugin.minifier</groupId>
<artifactId>isaac-dotcms-minifier</artifactId>
<version>${project.dotcms.version}-1</version>
<packaging>pom</packaging>
<name>ISAAC dotCMS Minifier Parent</name>
<modules>
<module>isaac-dotcms-minifier-core</module>
<module>isaac-dotcms-minifier-static</module>
<module>isaac-dotcms-minifier-dynamic</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.dotcms.version>22.03.7</project.dotcms.version>
</properties>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<organization>
<name>ISAAC Software Solutions</name>
<url>http://www.isaac.nl</url>
</organization>
<repositories>
<repository>
<id>dotcms-libs-release-local</id>
<name>dotcms Maven Repository</name>
<url>https://repo.dotcms.com/artifactory/libs-release-local/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>dotcms-ext-release-local</id>
<name>dotcms Maven Repository</name>
<url>https://repo.dotcms.com/artifactory/ext-release-local/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.dotcms</groupId>
<artifactId>dotcms</artifactId>
<version>${project.dotcms.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</exclusion>
<!-- Exclude the following otherwise 22.03.7 will not build -->
<exclusion>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>