File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 130130
131131 <build >
132132 <plugins >
133+ <plugin >
134+ <groupId >org.apache.maven.plugins</groupId >
135+ <artifactId >maven-compiler-plugin</artifactId >
136+ <version >${maven-compiler-plugin.version} </version >
137+ <configuration >
138+ <source >${maven.compiler.source} </source >
139+ <target >${maven.compiler.target} </target >
140+ <encoding >${project.build.sourceEncoding} </encoding >
141+ </configuration >
142+ </plugin >
143+ <plugin >
144+ <groupId >org.apache.maven.plugins</groupId >
145+ <artifactId >maven-source-plugin</artifactId >
146+ <version >${maven-source-plugin.version} </version >
147+ <executions >
148+ <execution >
149+ <id >attach-sources</id >
150+ <goals >
151+ <goal >jar</goal >
152+ </goals >
153+ </execution >
154+ </executions >
155+ </plugin >
156+ <plugin >
157+ <groupId >org.apache.maven.plugins</groupId >
158+ <artifactId >maven-javadoc-plugin</artifactId >
159+ <version >${maven-javadoc-plugin.version} </version >
160+ <configuration >
161+ <source >17</source >
162+ <quiet >true</quiet >
163+ <doclint >none</doclint >
164+ </configuration >
165+ <executions >
166+ <execution >
167+ <id >attach-javadocs</id >
168+ <goals >
169+ <goal >jar</goal >
170+ </goals >
171+ </execution >
172+ </executions >
173+ </plugin >
174+ <plugin >
175+ <groupId >org.sonatype.central</groupId >
176+ <artifactId >central-publishing-maven-plugin</artifactId >
177+ <version >0.8.0</version >
178+ <extensions >true</extensions >
179+ <configuration >
180+ <publishingServerId >central</publishingServerId >
181+ <autoPublish >true</autoPublish >
182+ </configuration >
183+ </plugin >
133184 <plugin >
134185 <groupId >org.apache.maven.plugins</groupId >
135186 <artifactId >maven-checkstyle-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments