Skip to content

Commit

Permalink
docs: issue deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
algomaster99 committed Aug 22, 2023
1 parent b1e5b2b commit 3a2ecfe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The project is structured as follows:

## `classfile-fingerprint`

### CLI
### CLI - WILL BE DEPRECATED SOON

> This component is not tested because it runs only jars that are executable
> and published on maven central.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.slf4j.LoggerFactory;
import picocli.CommandLine;

@Deprecated(since = "0.10.0", forRemoval = true)
@CommandLine.Command(
name = "from-sbom",
mixinStandardHelpOptions = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;

@Deprecated(since = "0.10.0", forRemoval = false)
@Mojo(
name = "generate",
defaultPhase = LifecyclePhase.COMPILE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.nio.file.Files;
import java.nio.file.Path;

@Deprecated(since = "0.10.0", forRemoval = true)
public class FromSbomOptions {
private final Bom14Schema input;
private final String algorithm;
Expand Down

0 comments on commit 3a2ecfe

Please sign in to comment.