Skip to content

Commit 41b4c25

Browse files
committed
Create a parent pom
1 parent 9ad7502 commit 41b4c25

File tree

5 files changed

+54
-10
lines changed

5 files changed

+54
-10
lines changed

drools-docs/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
<modelVersion>4.0.0</modelVersion>
2626
<parent>
2727
<groupId>org.kie</groupId>
28-
<artifactId>drools-build-parent</artifactId>
29-
<version>10.0.0</version>
28+
<artifactId>apache-kie-docs-parent</artifactId>
29+
<version>999-SNAPSHOT</version>
30+
<relativePath>../pom.xml</relativePath>
3031
</parent>
3132

3233
<artifactId>drools-docs</artifactId>

drools-docs/src/antora-template.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ asciidoc:
2929
attributes:
3030
doctype: book
3131
drools-version: ${project.version}
32-
java-version: ${maven.compiler.release}
33-
maven-version: ${version.org.apache.maven}
34-
quarkus-version: ${version.io.quarkus}
32+
java-version: 17
33+
maven-version: 3.9.6
3534
start_page: introduction/index.adoc
3635
nav:
3736
- modules/ROOT/nav.adoc

kogito-docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ For guidelines on contributing to a `KIE Apache (incubating)` development projec
114114
$ cd ~/incubator-kie-docs/kogito-docs
115115
$ mvn clean install -Dfull
116116
[Build output]
117-
$ google-chrome doc-content/apache-kogito-docs/target/generated-docs/html_single/index.html
117+
$ google-chrome doc-content/apache-kie-kogito/target/generated-docs/html_single/index.html
118118
```
119119
Replace `google-chrome` with the browser of your choice.
120120

kogito-docs/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
-->
1717
<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">
1818

19-
2019
<parent>
21-
<groupId>org.apache</groupId>
22-
<artifactId>apache</artifactId>
23-
<version>32</version>
20+
<groupId>org.kie</groupId>
21+
<artifactId>apache-kie-docs-parent</artifactId>
22+
<version>999-SNAPSHOT</version>
23+
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

2626
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2015 Red Hat, Inc. and/or its affiliates
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
<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">
18+
19+
<parent>
20+
<groupId>org.apache</groupId>
21+
<artifactId>apache</artifactId>
22+
<version>32</version>
23+
</parent>
24+
25+
<modelVersion>4.0.0</modelVersion>
26+
<groupId>org.kie</groupId>
27+
<artifactId>apache-kie-docs-parent</artifactId>
28+
<version>999-SNAPSHOT</version>
29+
30+
<packaging>pom</packaging>
31+
<name>Apache KIE :: Documentation Parent</name>
32+
<description>Parent for Apache KIE Documentation</description>
33+
34+
<scm>
35+
<connection>scm:git:[email protected]:apache/incubator-kie-docs.git</connection>
36+
<developerConnection>scm:git:[email protected]:apache/incubator-kie-docs.git</developerConnection>
37+
<url>https://github.com/apache/incubator-kie-docs</url>
38+
</scm>
39+
40+
<modules>
41+
<module>drools-docs</module>
42+
<module>kogito-docs</module>
43+
</modules>
44+
</project>

0 commit comments

Comments
 (0)