Skip to content

Commit c1d23ab

Browse files
committed
Adds a log4j-docgen module
The module contains a commons XML model to document a JARs containing Log4j plugins. Part of apache/logging-log4j2#1955.
1 parent 2ded1ff commit c1d23ab

File tree

7 files changed

+836
-10
lines changed

7 files changed

+836
-10
lines changed

Diff for: log4j-docgen/pom.xml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one or more
4+
~ contributor license agreements. See the NOTICE file distributed with
5+
~ this work for additional information regarding copyright ownership.
6+
~ The ASF licenses this file to you under the Apache License, Version 2.0
7+
~ (the "License"); you may not use this file except in compliance with
8+
~ the License. You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
<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">
19+
<modelVersion>4.0.0</modelVersion>
20+
<parent>
21+
<groupId>org.apache.logging.log4j</groupId>
22+
<artifactId>log4j-tools-parent</artifactId>
23+
<version>${revision}</version>
24+
<relativePath>../log4j-tools-parent</relativePath>
25+
</parent>
26+
27+
<artifactId>log4j-docgen</artifactId>
28+
29+
<properties>
30+
<bnd.baseline.fail.on.missing>false</bnd.baseline.fail.on.missing>
31+
</properties>
32+
33+
<build>
34+
<plugins>
35+
36+
<plugin>
37+
<groupId>org.codehaus.modello</groupId>
38+
<artifactId>modello-maven-plugin</artifactId>
39+
<executions>
40+
<execution>
41+
<id>generate-model</id>
42+
<goals>
43+
<goal>java</goal>
44+
<goal>stax-reader</goal>
45+
<goal>stax-writer</goal>
46+
<goal>xdoc</goal>
47+
<goal>xsd</goal>
48+
</goals>
49+
<configuration>
50+
<domAsXpp3>false</domAsXpp3>
51+
<models>
52+
<model>src/main/mdo/plugins-model.xml</model>
53+
</models>
54+
<version>0.1.0</version>
55+
</configuration>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
60+
</plugins>
61+
</build>
62+
63+
</project>

0 commit comments

Comments
 (0)