├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── frontend-maven-plugin ├── .gitignore ├── pom.xml └── src │ ├── it │ ├── bun-integration │ │ ├── .gitignore │ │ ├── invoker.properties │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── corepack-integration │ │ ├── .yarnrc.yml │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── corepack-provided-integration │ │ ├── .yarnrc.yml │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── custom-install-directory │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── custom-working-directory │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── frontend │ │ │ │ ├── .gitignore │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ └── verify.groovy │ ├── example project │ │ ├── .gitignore │ │ ├── helper-scripts │ │ │ ├── README.md │ │ │ ├── npm │ │ │ └── npm.cmd │ │ ├── index.html │ │ ├── invoker.properties │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── javascript │ │ │ │ ├── square.js │ │ │ │ └── square.test.js │ │ └── verify.groovy │ ├── node-provided-npm │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── npx-integration │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── pnpm-integration │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ ├── settings.xml │ ├── yarn-berry-integration │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-4.1.1.cjs │ │ ├── .yarnrc.yml │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ └── yarn-integration │ │ ├── package.json │ │ ├── pom.xml │ │ └── verify.groovy │ └── main │ ├── java │ └── com │ │ └── github │ │ └── eirslett │ │ └── maven │ │ └── plugins │ │ └── frontend │ │ └── mojo │ │ ├── AbstractFrontendMojo.java │ │ ├── BowerMojo.java │ │ ├── BunMojo.java │ │ ├── CorepackMojo.java │ │ ├── EmberMojo.java │ │ ├── GruntMojo.java │ │ ├── GulpMojo.java │ │ ├── InstallBunMojo.java │ │ ├── InstallNodeAndCorepackMojo.java │ │ ├── InstallNodeAndNpmMojo.java │ │ ├── InstallNodeAndPnpmMojo.java │ │ ├── InstallNodeAndYarnMojo.java │ │ ├── JspmMojo.java │ │ ├── KarmaRunMojo.java │ │ ├── MojoUtils.java │ │ ├── NpmMojo.java │ │ ├── NpxMojo.java │ │ ├── PnpmMojo.java │ │ ├── RepositoryCacheResolver.java │ │ ├── WebpackMojo.java │ │ ├── YarnMojo.java │ │ └── YarnUtils.java │ └── resources │ └── META-INF │ └── m2e │ └── lifecycle-mapping-metadata.xml ├── frontend-plugin-core ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── github │ │ └── eirslett │ │ └── maven │ │ └── plugins │ │ └── frontend │ │ └── lib │ │ ├── ArchiveExtractor.java │ │ ├── ArgumentsParser.java │ │ ├── BowerRunner.java │ │ ├── BunExecutor.java │ │ ├── BunExecutorConfig.java │ │ ├── BunInstaller.java │ │ ├── BunRunner.java │ │ ├── BunTaskExecutor.java │ │ ├── CacheDescriptor.java │ │ ├── CacheResolver.java │ │ ├── CorepackInstaller.java │ │ ├── CorepackRunner.java │ │ ├── DirectoryCacheResolver.java │ │ ├── EmberRunner.java │ │ ├── FileDownloader.java │ │ ├── FrontendException.java │ │ ├── FrontendPluginFactory.java │ │ ├── GruntRunner.java │ │ ├── GulpRunner.java │ │ ├── InstallConfig.java │ │ ├── InstallationException.java │ │ ├── JspmRunner.java │ │ ├── KarmaRunner.java │ │ ├── NPMInstaller.java │ │ ├── NodeExecutor.java │ │ ├── NodeExecutorConfig.java │ │ ├── NodeInstaller.java │ │ ├── NodeTaskExecutor.java │ │ ├── NodeTaskRunner.java │ │ ├── NpmRunner.java │ │ ├── NpxRunner.java │ │ ├── Platform.java │ │ ├── PnpmInstaller.java │ │ ├── PnpmRunner.java │ │ ├── ProcessExecutor.java │ │ ├── ProxyConfig.java │ │ ├── TaskRunnerException.java │ │ ├── Utils.java │ │ ├── WebpackRunner.java │ │ ├── YarnExecutor.java │ │ ├── YarnExecutorConfig.java │ │ ├── YarnInstaller.java │ │ ├── YarnRunner.java │ │ └── YarnTaskExecutor.java │ └── test │ ├── java │ └── com │ │ └── github │ │ └── eirslett │ │ └── maven │ │ └── plugins │ │ └── frontend │ │ └── lib │ │ ├── ArgumentsParserTest.java │ │ ├── DefaultArchiveExtractorTest.java │ │ ├── DefaultNpmRunnerTest.java │ │ ├── DefaultNpxRunnerTest.java │ │ ├── PlatformTest.java │ │ └── UtilsTest.java │ └── resources │ ├── bad.tgz │ ├── bad.zip │ ├── good.tgz │ └── good.zip ├── pom.xml └── settings-github.xml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /frontend-maven-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | target -------------------------------------------------------------------------------- /frontend-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.os.family = windows, unix, mac 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/bun-integration/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/bun-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/bun-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/bun-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/bun-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-integration/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-integration/.yarnrc.yml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-provided-integration/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-provided-integration/.yarnrc.yml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-provided-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-provided-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-provided-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-provided-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/corepack-provided-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/corepack-provided-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-install-directory/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-install-directory/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-install-directory/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-install-directory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-install-directory/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-install-directory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-install-directory/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-install-directory/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-install-directory/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-working-directory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-working-directory/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-working-directory/src/main/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-working-directory/src/main/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-working-directory/src/main/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-working-directory/src/main/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-working-directory/src/main/frontend/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/custom-working-directory/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/custom-working-directory/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/.gitignore -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/helper-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/helper-scripts/README.md -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/helper-scripts/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/helper-scripts/npm -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/helper-scripts/npm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/helper-scripts/npm.cmd -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/index.html -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean verify 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/src/main/javascript/square.js: -------------------------------------------------------------------------------- 1 | export function square(n) { 2 | return n * n; 3 | } 4 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/src/main/javascript/square.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/src/main/javascript/square.test.js -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/example project/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/example project/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/node-provided-npm/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/node-provided-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/node-provided-npm/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/node-provided-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/node-provided-npm/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/node-provided-npm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/node-provided-npm/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/node-provided-npm/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/node-provided-npm/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/npx-integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/npx-integration/package-lock.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/npx-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/npx-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/npx-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/npx-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/npx-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/npx-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/pnpm-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/pnpm-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/pnpm-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/pnpm-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/pnpm-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/pnpm-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/settings.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-berry-integration/.yarn/releases/yarn-4.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-berry-integration/.yarn/releases/yarn-4.1.1.cjs -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-berry-integration/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-berry-integration/.yarnrc.yml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-berry-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-berry-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-berry-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-berry-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-berry-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-berry-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-integration/package.json -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-integration/pom.xml -------------------------------------------------------------------------------- /frontend-maven-plugin/src/it/yarn-integration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/it/yarn-integration/verify.groovy -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/AbstractFrontendMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/AbstractFrontendMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/BowerMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/BowerMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/BunMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/BunMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/CorepackMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/CorepackMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/EmberMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/EmberMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/GruntMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/GruntMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/GulpMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/GulpMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallBunMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallBunMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndCorepackMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndCorepackMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndNpmMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndNpmMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndPnpmMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndPnpmMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndYarnMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/InstallNodeAndYarnMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/JspmMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/JspmMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/KarmaRunMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/KarmaRunMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/MojoUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/MojoUtils.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/NpmMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/NpmMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/NpxMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/NpxMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/PnpmMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/PnpmMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/RepositoryCacheResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/RepositoryCacheResolver.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/WebpackMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/WebpackMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/YarnMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/YarnMojo.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/YarnUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/java/com/github/eirslett/maven/plugins/frontend/mojo/YarnUtils.java -------------------------------------------------------------------------------- /frontend-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /frontend-plugin-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/pom.xml -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ArchiveExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ArchiveExtractor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParser.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BowerRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BowerRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunExecutorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunExecutorConfig.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunTaskExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/BunTaskExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CacheDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CacheDescriptor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CacheResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CacheResolver.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CorepackInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CorepackInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CorepackRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/CorepackRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/DirectoryCacheResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/DirectoryCacheResolver.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/EmberRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/EmberRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FileDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FileDownloader.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FrontendException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FrontendException.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FrontendPluginFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FrontendPluginFactory.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/GruntRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/GruntRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/GulpRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/GulpRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/InstallConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/InstallConfig.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/InstallationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/InstallationException.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/JspmRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/JspmRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/KarmaRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/KarmaRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NPMInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NPMInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeExecutorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeExecutorConfig.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeTaskExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeTaskExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeTaskRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NodeTaskRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NpmRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NpmRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NpxRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/NpxRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/Platform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/Platform.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/PnpmInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/PnpmInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/PnpmRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/PnpmRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ProcessExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ProcessExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ProxyConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/ProxyConfig.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/TaskRunnerException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/TaskRunnerException.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/Utils.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/WebpackRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/WebpackRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnExecutorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnExecutorConfig.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnInstaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnInstaller.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnRunner.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnTaskExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/YarnTaskExecutor.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/ArgumentsParserTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultArchiveExtractorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultArchiveExtractorTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultNpmRunnerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultNpmRunnerTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultNpxRunnerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/DefaultNpxRunnerTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/PlatformTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/PlatformTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/UtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/java/com/github/eirslett/maven/plugins/frontend/lib/UtilsTest.java -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/resources/bad.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/resources/bad.tgz -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/resources/bad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/resources/bad.zip -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/resources/good.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/resources/good.tgz -------------------------------------------------------------------------------- /frontend-plugin-core/src/test/resources/good.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/frontend-plugin-core/src/test/resources/good.zip -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /settings-github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eirslett/frontend-maven-plugin/HEAD/settings-github.xml --------------------------------------------------------------------------------