File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
extensions/hibernate-orm/deployment/src/main/java/io/quarkus/hibernate/orm/deployment
independent-projects/tools/utilities/src/main/java/io/quarkus/utilities Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
* See <a href="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/search?q=org%3Aquarkiverse%20AdditionalJpaModelBuildItem&type=code">here</a>
15
15
* for a full list.
16
16
*/
17
- @ Deprecated
17
+ @ Deprecated ( forRemoval = true , since = "3.3" )
18
18
public final class AdditionalJpaModelBuildItem extends MultiBuildItem {
19
19
20
20
private final String className ;
Original file line number Diff line number Diff line change 5
5
/**
6
6
* @deprecated Use {@link ProcessUtil} instead.
7
7
*/
8
- @ Deprecated (forRemoval = true )
8
+ @ Deprecated (forRemoval = true , since = "3.25" )
9
9
public class JavaBinFinder {
10
10
/**
11
11
* {@return the path of the {@code java} command (not {@code null})}
12
12
*
13
13
* @deprecated Use {@link ProcessUtil#pathOfJava()} instead.
14
14
*/
15
- @ Deprecated (forRemoval = true )
15
+ @ Deprecated (forRemoval = true , since = "3.25" )
16
16
public static String findBin () {
17
17
return ProcessUtil .pathOfJava ().toString ();
18
18
}
@@ -22,7 +22,7 @@ public static String findBin() {
22
22
*
23
23
* @deprecated Use {@link ProcessUtil#nameOfJava()} instead.
24
24
*/
25
- @ Deprecated (forRemoval = true )
25
+ @ Deprecated (forRemoval = true , since = "3.25" )
26
26
public static String simpleBinaryName () {
27
27
return ProcessUtil .nameOfJava ();
28
28
}
Original file line number Diff line number Diff line change 7
7
*
8
8
* @deprecated Use {@link io.smallrye.common.os.OS} and {@link io.smallrye.common.cpu.CPU} instead.
9
9
*/
10
- @ Deprecated (forRemoval = true )
10
+ @ Deprecated (forRemoval = true , since = "3.25" )
11
11
public enum OS {
12
12
WINDOWS ,
13
13
LINUX ,
@@ -19,7 +19,7 @@ public enum OS {
19
19
*
20
20
* @deprecated Use {@link io.smallrye.common.os.OS#current} instead.
21
21
*/
22
- @ Deprecated (forRemoval = true )
22
+ @ Deprecated (forRemoval = true , since = "3.25" )
23
23
public static OS determineOS () {
24
24
return switch (io .smallrye .common .os .OS .current ()) {
25
25
case WINDOWS -> WINDOWS ;
@@ -36,7 +36,7 @@ public static OS determineOS() {
36
36
* @return the string, or {@code null} if the architecture is unknown
37
37
* @deprecated Use {@link io.smallrye.common.cpu.CPU#host} instead (but beware of differing string values).
38
38
*/
39
- @ Deprecated (forRemoval = true )
39
+ @ Deprecated (forRemoval = true , since = "3.25" )
40
40
public static String getArchitecture () {
41
41
return switch (CPU .host ()) {
42
42
case x64 -> "x86_64" ;
You can’t perform that action at this time.
0 commit comments