-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpom.xml
More file actions
65 lines (58 loc) · 2.5 KB
/
pom.xml
File metadata and controls
65 lines (58 loc) · 2.5 KB
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
<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>com.dotcms</groupId>
<artifactId>plugin-examples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>dotCMS Plugin Seeds</name>
<description>Aggregator and shared parent for dotCMS OSGi plugin examples.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<dotcms-core.version>26.03.27-01</dotcms-core.version>
</properties>
<repositories>
<repository>
<id>dotcms-repo</id>
<url>https://artifactory.dotcms.cloud/artifactory/libs-release</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.dotcms</groupId>
<artifactId>dotcms-core</artifactId>
<version>${dotcms-core.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>com.dotcms.3rd.party</module>
<module>com.dotcms.actionlet</module>
<module>com.dotcms.aop</module>
<module>com.dotcms.app.example</module>
<module>com.dotcms.content.validation</module>
<module>com.dotcms.contenttype</module>
<module>com.dotcms.dynamic.skeleton</module>
<module>com.dotcms.fixasset</module>
<module>com.dotcms.hooks</module>
<module>com.dotcms.hooks.pubsub</module>
<module>com.dotcms.hooks.validations</module>
<module>com.dotcms.portlet</module>
<module>com.dotcms.pushpublish.listener</module>
<module>com.dotcms.rest</module>
<module>com.dotcms.ruleengine.velocityscriptingactionlet</module>
<module>com.dotcms.ruleengine.visitoripconditionlet</module>
<module>com.dotcms.servlet</module>
<module>com.dotcms.simpleService</module>
<module>com.dotcms.staticpublish.listener</module>
<module>com.dotcms.tuckey</module>
<module>com.dotcms.viewtool</module>
<module>com.dotcms.webinterceptor</module>
<module>com.dotcms.job</module>
</modules>
</project>