-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
155 lines (145 loc) · 5.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
149
150
151
152
153
154
155
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd ">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.composum.platform</groupId>
<artifactId>composum-platform</artifactId>
<version>1.7.1</version>
</parent>
<groupId>com.composum.ai</groupId>
<artifactId>composum-ai-integration</artifactId>
<version>2.2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Composum AI</name>
<description>
Reactor for Composum AI, a set of modules to provide AI based services for CMS like Composum
Pages or AEM
</description>
<url>${siteurl}</url>
<scm>
<connection>scm:git:${giturl}</connection>
<developerConnection>scm:git:${giturl}</developerConnection>
<url>${giturl}</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ist-dresden/composum-AI/issues/</url>
</issueManagement>
<distributionManagement>
<site>
<id>api.composum.com</id>
<!--
We do not actually use scp for that, but that determines the relative links in the directory structure.
Since we need to specify that in the aem module again, we specify it here, too, to protect against parent
changes.
For some reason this needs a /var/www/composum/api/public/ prefix or the structure on site:stage is broken.
Since this is not connected to ../pom.xml but the site should be integrated, we need to specify this here.
-->
<url>
scp://api.composum.com/var/www/composum/api/public/parent-2/parent-2-public/composum-platform/composum-ai-integration/
</url>
</site>
</distributionManagement>
<modules>
<module>backend</module>
<module>composum</module>
<module>aem</module>
</modules>
<properties>
<package.group>com/composum/ai</package.group>
<siteurl>https://ai.composum.com/</siteurl>
<giturl>https://github.com/ist-dresden/composum-AI.git</giturl>
<!-- for AEM 6.5.x backwards compatibility until the bronze age -->
<java.source>1.8</java.source>
<java.target>1.8</java.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<pluginManagement>
<plugins>
<!-- === For generating the site === -->
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-site-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.20.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>execute-shell-script</id>
<phase>pre-site</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>bin/generate_sitemap.sh</executable>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.5.2</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.8</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>hp.stoerr</id>
<name>Hans-Peter Störr</name>
<email>[email protected]</email>
<organization>IST GmbH Dresden</organization>
<organizationUrl>http://www.ist-software.com</organizationUrl>
</developer>
<developer>
<id>r.wunsch</id>
<name>Ralf Wunsch</name>
<email>[email protected]</email>
<organization>IST GmbH Dresden</organization>
<organizationUrl>http://www.ist-software.com</organizationUrl>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>