1.0.2 • Published 5 years ago

@luca.salzone/pjclient v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

@luca.salzone/pjclient

The Project Client is a command-line tool that you use to initialize, update and run any project.

Installation & Usage

    npm install -g @luca.salzone/pjclient

Create project configuration

{
    "commands":[
        {
            "name":"install",
            "options": [
                {
                    "name":"jaxrs",
                    "cmd":"mkdir jaxrs",
                    "commands":[
                        {
                            "options": [
                                { 
                                    "cmd":"git clone https://github.com/lucasalzone/jaxrs_example.git jaxrs",
                                    "commands":[
                                        {
                                            "options": [
                                                { "cmd":"mvn clean install -DskipTests -f jaxrs" }
                                            ],
                                            "stopOnError":true
                                        }                        
                                    ] 
                                }
                            ],
                            
                            "stopOnError":true
                        }                
                    ]
                }
            ],
            "stopOnError":true
        }
    ]
}

and run pjclient

    pjclient install jaxrs

License

MIT

Collaborators

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago