File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 26
26
<target >1.8</target >
27
27
</configuration >
28
28
</plugin >
29
+ <plugin >
30
+ <groupId >org.apache.maven.plugins</groupId >
31
+ <artifactId >maven-javadoc-plugin</artifactId >
32
+ <version >2.10.4</version >
33
+ <configuration >
34
+ <aggregate >true</aggregate >
35
+ <source >1.8</source >
36
+ <encoding >UTF-8</encoding >
37
+ <maxmemory >1g</maxmemory >
38
+ <excludePackageNames >${javadoc.package.exclude} </excludePackageNames >
39
+ </configuration >
40
+ <executions >
41
+ <execution >
42
+ <id >attach-javadocs</id >
43
+ <phase >verify</phase >
44
+ <goals >
45
+ <goal >jar</goal >
46
+ </goals >
47
+ </execution >
48
+ </executions >
49
+ </plugin >
50
+ <plugin >
51
+ <groupId >org.apache.maven.plugins</groupId >
52
+ <artifactId >maven-source-plugin</artifactId >
53
+ <version >3.0.1</version >
54
+ <executions >
55
+ <execution >
56
+ <id >attach-sources</id >
57
+ <phase >verify</phase >
58
+ <goals >
59
+ <goal >jar-no-fork</goal >
60
+ </goals >
61
+ </execution >
62
+ </executions >
63
+ </plugin >
29
64
</plugins >
30
65
</build >
31
66
You can’t perform that action at this time.
0 commit comments