Skip to content

Commit c829291

Browse files
authored
Merge pull request #7171 from chrisrueger/7158-deprecate-testterminate
deprecate -testterminate
2 parents cedbf86 + 27ae8c6 commit c829291

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

biz.aQute.bndlib/src/aQute/bnd/build/ProjectTester.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,18 @@ public void setCwd(File dir) {
9191
launcher.setCwd(dir);
9292
}
9393

94+
/**
95+
* @deprecated forRemoval since = "8.0.0"
96+
*/
97+
@Deprecated
9498
public boolean getTerminate() {
9599
return terminate;
96100
}
97101

102+
/**
103+
* @deprecated forRemoval since = "8.0.0"
104+
*/
105+
@Deprecated
98106
public void setTerminate(boolean terminate) {
99107
this.terminate = terminate;
100108
}

biz.aQute.bndlib/src/aQute/bnd/osgi/Constants.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,10 @@ public interface Constants {
302302
String TESTPACKAGES = "-testpackages";
303303
String TESTPATH = "-testpath";
304304
String TESTCONTINUOUS = "-testcontinuous";
305+
/**
306+
* @deprecated forRemoval since = "8.0.0"
307+
*/
308+
@Deprecated
305309
String TESTTERMINATE = "-testterminate";
306310
String TESTSOURCES = "-testsources";
307311
String TESTUNRESOLVED = "-testunresolved";

0 commit comments

Comments
 (0)