-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
94 lines (78 loc) · 3.26 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.metaeffekt.dita</groupId>
<artifactId>ae-dita</artifactId>
<version>HEAD-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.metaeffekt.core</groupId>
<artifactId>ae-core</artifactId>
<version>HEAD-SNAPSHOT</version>
</parent>
<name>metaeffekt-dita</name>
<description>DITA Tool Chain project with basic support for creating documents with DITA and Maven.</description>
<url>https://github.com/org-metaeffekt/metaeffekt-dita</url>
<organization>
<name>metaeffekt GmbH</name>
<url>http://metaeffekt.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/org-metaeffekt/metaeffekt-dita.git</connection>
<developerConnection>scm:git:ssh://github.com:org-metaeffekt/metaeffekt-dita.git</developerConnection>
<url>https://github.com/org-metaeffekt/metaeffekt-dita.git</url>
</scm>
<developers>
<developer>
<email>contact@metaeffekt.org</email>
<organization>metaeffekt GmbH</organization>
<organizationUrl>http://metaeffekt.com</organizationUrl>
</developer>
</developers>
<inceptionYear>2016</inceptionYear>
<properties>
<ae.core.version>HEAD-SNAPSHOT</ae.core.version>
<ae.dita.version>HEAD-SNAPSHOT</ae.dita.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<artifact.inventory.enabled>true</artifact.inventory.enabled>
</properties>
<modules>
<module>brandings</module>
<module>customizations</module>
<module>dita-plugins</module>
<module>maven-plugins</module>
<module>poms</module>
<module>tests</module>
<module>distributions</module>
<module>inventory</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.metaeffekt.core</groupId>
<artifactId>ae-version-maven-plugin</artifactId>
<version>${ae.core.version}</version>
<configuration>
<projectVersion>${ae.dita.version}</projectVersion>
<groupIdVersionMap>
<org.metaeffekt.dita>${ae.core.version}</org.metaeffekt.dita>
</groupIdVersionMap>
<propertyVersionMap>
<ae.core.version>${ae.core.version}</ae.core.version>
<ae.dita.version>${ae.dita.version}</ae.dita.version>
</propertyVersionMap>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>