Skip to content

Clean up POM #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<packaging>hpi</packaging>
<version>${revision}${changelist}</version>
<name>Pipeline Utility Steps</name>
<url>https://github.com/jenkinsci/pipeline-utility-steps-plugin</url>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>

<licenses>
<license>
Expand Down Expand Up @@ -164,18 +164,4 @@
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>

<profiles>
<profile>
<id>jdk11</id>
<properties>
<!-- TODO: https://issues.jenkins-ci.org/browse/JENKINS-53788 (JDK11 issue on CI) -->
<doclint>none</doclint>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<activation>
<jdk>11</jdk>
</activation>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ private static final String check(String s) {
*
* @param definition
* to be added to the Constructor
* @return the previous value associated with <tt>definition</tt>, or
* <tt>null</tt> if there was no mapping for <tt>definition</tt>.
* @return the previous value associated with {@code definition}, or
* {@code null} if there was no mapping for {@code definition}.
*/
public TypeDescription addTypeDescription(TypeDescription definition) {
if (definition == null) {
Expand Down