File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
scripts/generator/templates Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 129
129
</execution >
130
130
</executions >
131
131
</plugin >
132
+ <plugin >
133
+ <groupId >org.apache.maven.plugins</groupId >
134
+ <artifactId >maven-source-plugin</artifactId >
135
+ <version >3.3.1</version >
136
+ <executions >
137
+ <execution >
138
+ <id >attach-sources</id >
139
+ <phase >package</phase >
140
+ <goals >
141
+ <goal >jar-no-fork</goal >
142
+ </goals >
143
+ </execution >
144
+ </executions >
145
+ </plugin >
146
+
147
+ <plugin >
148
+ <groupId >org.apache.maven.plugins</groupId >
149
+ <artifactId >maven-javadoc-plugin</artifactId >
150
+ <version >3.11.2</version >
151
+ <executions >
152
+ <execution >
153
+ <id >attach-javadocs</id >
154
+ <phase >package</phase >
155
+ <goals >
156
+ <goal >jar</goal >
157
+ </goals >
158
+ </execution >
159
+ </executions >
160
+ <configuration >
161
+ <includeDependencySources >false</includeDependencySources >Add commentMore actions
162
+ <includeTransitiveDependencySources >false</includeTransitiveDependencySources >
163
+ <quiet >true</quiet >
164
+ <additionalparam >-Xdoclint:none</additionalparam >
165
+ </configuration >
166
+ </plugin >
132
167
</plugins >
133
168
134
169
</build >
You can’t perform that action at this time.
0 commit comments