forked from scribble/scribble-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (92 loc) · 2.77 KB
/
Copy pathpom.xml
File metadata and controls
95 lines (92 loc) · 2.77 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
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
<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>
<artifactId>scribble-trace</artifactId>
<packaging>jar</packaging>
<version>0.4.0-SNAPSHOT</version>
<name>Scribble::Modules::Trace</name>
<parent>
<groupId>org.scribble</groupId>
<artifactId>modules</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.scribble</groupId>
<artifactId>scribble-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.scribble</groupId>
<artifactId>scribble-parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.scribble</groupId>
<artifactId>scribble-monitor</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.scribble</groupId>
<artifactId>scribble-projection</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclet>org.jboss.apiviz.APIviz</doclet>
<docletArtifact>
<groupId>org.jboss.apiviz</groupId>
<artifactId>apiviz</artifactId>
<version>1.2.4.GA</version>
</docletArtifact>
<aggregate>true</aggregate>
<attach>false</attach>
<additionalparam>
-d ${project.build.directory}/javadoc
-charset UTF-8
-docencoding UTF-8
-version
-author
-breakiterator
-windowtitle "${project.name} ${project.version} API Reference"
-doctitle "${project.name} ${project.version} API Reference"
-bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
-link http://java.sun.com/javase/6/docs/api/
-sourceclasspath ${project.build.outputDirectory}
</additionalparam>
<encoding>UTF-8</encoding>
<locale>en_US</locale>
<subpackages>
org.scribble.trace
</subpackages>
</configuration>
</plugin>
</plugins>
</build>
</project>