File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed
src/main/java/jenkins/scm/api Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 5757 <properties >
5858 <changelist >999999-SNAPSHOT</changelist >
5959 <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
60- <jenkins .baseline>2.479 </jenkins .baseline>
61- <jenkins .version>${jenkins.baseline} .1 </jenkins .version>
60+ <jenkins .baseline>2.504 </jenkins .baseline>
61+ <jenkins .version>${jenkins.baseline} .3 </jenkins .version>
6262 <gitHubRepo >jenkinsci/${project.artifactId}-plugin</gitHubRepo >
6363 <no-test-jar >false</no-test-jar >
6464 <hpi .compatibleSinceVersion>2.0.0</hpi .compatibleSinceVersion>
8282 <dependency >
8383 <groupId >io.jenkins.tools.bom</groupId >
8484 <artifactId >bom-${jenkins.baseline}.x</artifactId >
85- <version >3893.v213a_42768d35 </version >
85+ <version >5422.v0fce72a_b_b_8cf </version >
8686 <scope >import</scope >
8787 <type >pom</type >
8888 </dependency >
Original file line number Diff line number Diff line change 1+ package jenkins .scm .api ;
2+
3+ import hudson .Extension ;
4+ import hudson .ExtensionList ;
5+ import jenkins .model .details .DetailGroup ;
6+
7+ /**
8+ * A {@link DetailGroup} implementation that provides SCM-related details.
9+ */
10+ @ Extension (ordinal = -1 )
11+ public class SCMDetailGroup extends DetailGroup {
12+
13+ public static SCMDetailGroup get () {
14+ return ExtensionList .lookupSingleton (SCMDetailGroup .class );
15+ }
16+ }
You can’t perform that action at this time.
0 commit comments