File tree 8 files changed +28
-61
lines changed
8 files changed +28
-61
lines changed Original file line number Diff line number Diff line change 129
129
<encoding >UTF-8</encoding >
130
130
<github .global.server>github</github .global.server>
131
131
<maven .compiler.release>8</maven .compiler.release>
132
- <maven .reporting.version>3.1.1 </maven .reporting.version>
132
+ <maven .reporting.version>4.0.0 </maven .reporting.version>
133
133
<maven .version.min>3.8.1</maven .version.min>
134
134
<maven .version.max>3.9</maven .version.max>
135
135
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
259
259
<dependency >
260
260
<groupId >org.apache.maven.doxia</groupId >
261
261
<artifactId >doxia-sink-api</artifactId >
262
- <version >1.12 .0</version >
262
+ <version >2.0 .0</version >
263
263
<scope >provided</scope >
264
264
</dependency >
265
265
<dependency >
Original file line number Diff line number Diff line change 16
16
<version >${scala.version.lastrelease} </version >
17
17
</dependency >
18
18
</dependencies >
19
+
20
+ <reporting >
21
+ <plugins >
22
+ <plugin >
23
+ <groupId >@project.groupId@</groupId >
24
+ <artifactId >@project.artifactId@</artifactId >
25
+ <version >@project.version@</version >
26
+ <configuration >
27
+ <includes >
28
+ <include >**/*.scala</include >
29
+ <include >**/TestClass.java</include >
30
+ </includes >
31
+ <excludes >
32
+ <exclude >bad.scala</exclude >
33
+ </excludes >
34
+ </configuration >
35
+ </plugin >
36
+ </plugins >
37
+ </reporting >
38
+
19
39
<build >
20
40
<plugins >
21
41
<plugin >
43
63
<plugin >
44
64
<groupId >org.apache.maven.plugins</groupId >
45
65
<artifactId >maven-site-plugin</artifactId >
46
- <version >3.3</version >
47
- <configuration >
48
- <reportPlugins >
49
- <plugin >
50
- <groupId >@project.groupId@</groupId >
51
- <artifactId >@project.artifactId@</artifactId >
52
- <version >@project.version@</version >
53
- <configuration >
54
- <includes >
55
- <include >**/*.scala</include >
56
- <include >**/TestClass.java</include >
57
- </includes >
58
- <excludes >
59
- <exclude >bad.scala</exclude >
60
- </excludes >
61
- </configuration >
62
- </plugin >
63
- </reportPlugins >
64
- </configuration >
66
+ <version >3.21.0</version >
65
67
</plugin >
66
68
<plugin >
67
69
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 82
82
</configuration >
83
83
</plugin >
84
84
<plugin >
85
- <groupId >org.apache.maven.plugins</groupId >
86
85
<artifactId >maven-site-plugin</artifactId >
87
- <version >3.12.1 </version >
86
+ <version >3.21.0 </version >
88
87
</plugin >
89
88
</plugins >
90
89
</build >
Original file line number Diff line number Diff line change 73
73
<plugin >
74
74
<groupId >org.apache.maven.plugins</groupId >
75
75
<artifactId >maven-site-plugin</artifactId >
76
- <version >3.12.1 </version >
76
+ <version >3.21.0 </version >
77
77
</plugin >
78
78
<plugin >
79
79
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 1
- invoker.goals =clean compile site -e
1
+ invoker.goals =clean compile scala:doc -e
Original file line number Diff line number Diff line change 22
22
<url >ANYTHING</url >
23
23
<name >ANYTHING</name >
24
24
</organization >
25
- <reporting >
26
- <plugins >
27
- <plugin >
28
- <groupId >org.apache.maven.plugins</groupId >
29
- <artifactId >maven-site-plugin</artifactId >
30
- </plugin >
31
- <plugin >
32
- <groupId >org.apache.maven.plugins</groupId >
33
- <artifactId >maven-project-info-reports-plugin</artifactId >
34
- </plugin >
35
- <plugin >
36
- <groupId >@project.groupId@</groupId >
37
- <artifactId >@project.artifactId@</artifactId >
38
- <version >@project.version@</version >
39
- <configuration >
40
- <doctitle >Hello</doctitle >
41
- <args >
42
- <arg >-doc-root-content</arg >
43
- <arg >src/main/scala/rootdoc.txt</arg >
44
- </args >
45
- <jvmArgs >
46
- <jvmArg >-Xms1024m</jvmArg >
47
- <jvmArg >-Xmx4096m</jvmArg >
48
- </jvmArgs >
49
- </configuration >
50
- </plugin >
51
-
52
- </plugins >
53
- </reporting >
54
25
<build >
55
26
<pluginManagement >
56
27
<plugins >
57
- <plugin >
58
- <groupId >org.apache.maven.plugins</groupId >
59
- <artifactId >maven-site-plugin</artifactId >
60
- <version >3.12.1</version >
61
- </plugin >
62
28
<plugin >
63
29
<groupId >org.apache.maven.plugins</groupId >
64
30
<artifactId >maven-project-info-reports-plugin</artifactId >
Original file line number Diff line number Diff line change 40
40
<plugin >
41
41
<groupId >org.apache.maven.plugins</groupId >
42
42
<artifactId >maven-site-plugin</artifactId >
43
- <version >3.12.1 </version >
43
+ <version >3.21.0 </version >
44
44
</plugin >
45
45
<plugin >
46
46
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 6
6
7
7
import java .io .File ;
8
8
import java .util .*;
9
+ import org .apache .maven .doxia .sink .Sink ;
9
10
import org .apache .maven .plugins .annotations .Execute ;
10
11
import org .apache .maven .plugins .annotations .LifecyclePhase ;
11
12
import org .apache .maven .plugins .annotations .Mojo ;
12
13
import org .apache .maven .plugins .annotations .Parameter ;
13
14
import org .apache .maven .plugins .annotations .ResolutionScope ;
14
15
import org .apache .maven .reporting .MavenReport ;
15
16
import org .apache .maven .reporting .MavenReportException ;
16
- import org .codehaus .doxia .sink .Sink ;
17
17
import org .codehaus .plexus .util .StringUtils ;
18
18
import scala_maven_dependency .Context ;
19
19
import scala_maven_executions .JavaMainCaller ;
You can’t perform that action at this time.
0 commit comments