File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed
modules/swagger-project-jakarta Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change 104
104
</execution >
105
105
</executions >
106
106
</plugin >
107
+ <plugin >
108
+ <groupId >org.apache.maven.plugins</groupId >
109
+ <artifactId >maven-source-plugin</artifactId >
110
+ <version >3.2.1</version >
111
+ <executions >
112
+ <execution >
113
+ <id >attach-sources</id >
114
+ <phase >verify</phase >
115
+ <goals >
116
+ <goal >jar-no-fork</goal >
117
+ </goals >
118
+ </execution >
119
+ </executions >
120
+ </plugin >
121
+ <plugin >
122
+ <groupId >org.apache.maven.plugins</groupId >
123
+ <artifactId >maven-javadoc-plugin</artifactId >
124
+ <version >3.1.1</version >
125
+ <configuration >
126
+ <aggregate >true</aggregate >
127
+ <source >1.8</source >
128
+ <encoding >UTF-8</encoding >
129
+ <maxmemory >1g</maxmemory >
130
+ <links >
131
+ <link >http://docs.oracle.com/javase/8/docs/api</link >
132
+ </links >
133
+ <excludePackageNames >${javadoc.package.exclude} </excludePackageNames >
134
+ </configuration >
135
+ <executions >
136
+ <execution >
137
+ <id >attach-javadocs</id >
138
+ <phase >verify</phase >
139
+ <goals >
140
+ <goal >jar</goal >
141
+ </goals >
142
+ </execution >
143
+ </executions >
144
+ </plugin >
107
145
<plugin >
108
146
<groupId >org.apache.maven.plugins</groupId >
109
147
<artifactId >maven-jar-plugin</artifactId >
110
148
<version >3.2.0</version >
149
+ <executions >
150
+ <execution >
151
+ <id >empty-javadoc-jar</id >
152
+ <phase >package</phase >
153
+ <goals >
154
+ <goal >jar</goal >
155
+ </goals >
156
+ <configuration >
157
+ <classifier >javadoc</classifier >
158
+ <classesDirectory >${basedir} /javadoc</classesDirectory >
159
+ </configuration >
160
+ </execution >
161
+ </executions >
111
162
</plugin >
112
163
<plugin >
113
164
<artifactId >maven-resources-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments