Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/payara/advisortool
This is a command line tool to advise projects from older versions of Jakarta EE to Jakarta 10
https://github.com/payara/advisortool
Last synced: 22 days ago
JSON representation
This is a command line tool to advise projects from older versions of Jakarta EE to Jakarta 10
- Host: GitHub
- URL: https://github.com/payara/advisortool
- Owner: payara
- Created: 2023-04-28T06:21:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-22T09:30:54.000Z (6 months ago)
- Last Synced: 2024-11-07T06:38:21.205Z (2 months ago)
- Language: Java
- Size: 164 KB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdvisorTool
This initial project to make the advisor toolTo use please follow next steps
download project
```
git clone https://github.com/breakponchito/AdvisorTool.git
```move to the master branch
```
git checkout master
```build the project:
```
mvn clean install
```Execute Command under a project that you want to advise for jakarta 10
```
mvn fish.payara.advisor:advisor-maven-plugin:1.1:advise
```Or
Execute Command under a project that you want to advise for microprofile 6
```
mvn fish.payara.advisor:advisor-maven-plugin:1.1:microprofile-advise
```if a pattern matchs you will see something like the following:
```
[INFO] Showing advice
[INFO] ********
Jakarta Authorization 2.1
Issue # 105
jakarta.security.jacc.PolicyContext.getContext(String) was changed from
public static Object getContext(String key) throws PolicyContextException {
to
public static T getContext(String key) throws PolicyContextException {
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
```