├── .gitignore ├── README.md ├── pom.xml └── src └── main └── resources ├── assemble.sh └── meta ├── alternatives.json ├── parcel.json ├── permissions.json └── presto_env.sh /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/resources/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/src/main/resources/assemble.sh -------------------------------------------------------------------------------- /src/main/resources/meta/alternatives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/src/main/resources/meta/alternatives.json -------------------------------------------------------------------------------- /src/main/resources/meta/parcel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/src/main/resources/meta/parcel.json -------------------------------------------------------------------------------- /src/main/resources/meta/permissions.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/meta/presto_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-wool/presto-parcel/HEAD/src/main/resources/meta/presto_env.sh --------------------------------------------------------------------------------