├── .dependency-lock-0.x ├── README.md ├── extensions │ └── pom.xml ├── parents │ └── pom.xml ├── plugins │ └── pom.xml └── pom.xml ├── .dependency-lock ├── extensions │ └── pom.xml ├── parents │ └── pom.xml ├── plugins │ └── pom.xml └── pom.xml ├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ ├── deploy-site.yaml │ ├── test-and-release.yaml │ ├── test-maven-3.6.3.yaml │ └── test-maven-4.0.0.yaml ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── java-sumtypes.json ├── mvnw ├── mvnw.cmd ├── pom.xml ├── resources.properties ├── spotbugs-suppressions.xml ├── src ├── it │ ├── configuration │ │ ├── allow-extraneous │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── allow-missing │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── configuration-order │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── exclude-dependencyset │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── filename-check │ │ │ ├── anothername.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── filename-lock │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── ignore-integrity-marked │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── ignore-integrity-on-folder │ │ │ ├── dependee │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── Foo.java │ │ │ ├── dependent │ │ │ │ ├── dependencies-lock.json │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── ignore-integrity │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── ignore-version-marked │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── ignore-version │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── snapshot-version │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ └── use-project-version │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ ├── failures │ │ ├── everything │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── extraneous │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── integrity-on-folder │ │ │ ├── dependee │ │ │ │ └── pom.xml │ │ │ ├── dependent │ │ │ │ ├── dependencies-lock.json │ │ │ │ ├── pom.xml │ │ │ │ └── postbuild.groovy │ │ │ ├── invoker.properties │ │ │ └── pom.xml │ │ ├── missing │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── not-project-version │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── wrong-integrity │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── wrong-optional │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── wrong-scope │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ └── wrong-version │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ ├── json │ │ ├── check-extensions │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── postbuild.groovy │ │ │ └── update-invoker.properties │ │ ├── check-future-format │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── check-parents │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── postbuild.groovy │ │ │ └── update-invoker.properties │ │ ├── check-plugins │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── postbuild.groovy │ │ │ └── update-invoker.properties │ │ ├── check │ │ │ ├── dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-extension │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-local-parent │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── parent │ │ │ │ └── pom.xml │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-parent │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-marked │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ └── lock │ │ │ ├── expected-dependencies-lock.json │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ ├── pom │ │ ├── check-extensions │ │ │ ├── .dependency-lock │ │ │ │ ├── extensions │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── check-parents │ │ │ ├── .dependency-lock │ │ │ │ ├── parents │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── check-plugins │ │ │ ├── .dependency-lock │ │ │ │ ├── plugins │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── postbuild.groovy │ │ │ └── update-invoker.properties │ │ ├── check │ │ │ ├── .dependency-lock │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── future-format │ │ │ ├── .dependency-lock │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-extension │ │ │ ├── expected │ │ │ │ ├── extensions │ │ │ │ │ └── pom.xml │ │ │ │ ├── parents │ │ │ │ │ └── pom.xml │ │ │ │ ├── plugins │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-local-parent │ │ │ ├── expected │ │ │ │ ├── extensions │ │ │ │ │ └── pom.xml │ │ │ │ ├── parents │ │ │ │ │ └── pom.xml │ │ │ │ ├── plugins │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── parent │ │ │ │ └── pom.xml │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build-with-parent │ │ │ ├── expected │ │ │ │ ├── extensions │ │ │ │ │ └── pom.xml │ │ │ │ ├── parents │ │ │ │ │ └── pom.xml │ │ │ │ ├── plugins │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-build │ │ │ ├── expected │ │ │ │ ├── extensions │ │ │ │ │ └── pom.xml │ │ │ │ ├── parents │ │ │ │ │ └── pom.xml │ │ │ │ ├── plugins │ │ │ │ │ └── pom.xml │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ ├── lock-marked │ │ │ ├── expected │ │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ │ └── lock │ │ │ ├── expected │ │ │ └── pom.xml │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── postbuild.groovy │ ├── setup │ │ └── dependencies │ │ │ ├── a-classified-leaf-1.0-classy.jar │ │ │ ├── a-classified-leaf-1.0.pom │ │ │ ├── a-parent-1.0.pom │ │ │ ├── a-snapshot-leaf-1.5-SNAPSHOT.jar │ │ │ ├── a-snapshot-leaf-1.5-SNAPSHOT.pom │ │ │ ├── a-third-leaf-1.0.jar │ │ │ ├── a-third-leaf-1.0.pom │ │ │ ├── a-war-1.0.pom │ │ │ ├── a-war-1.0.war │ │ │ ├── another-leaf-1.0.jar │ │ │ ├── another-leaf-1.0.pom │ │ │ ├── another-parent-1.0.pom │ │ │ ├── leaf-1.0.jar │ │ │ ├── leaf-1.0.pom │ │ │ ├── pom.xml │ │ │ ├── with-dependency-1.0.jar │ │ │ └── with-dependency-1.0.pom │ └── transitivity │ │ ├── checked │ │ ├── dependencies-lock.json │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── postbuild.groovy │ │ └── locked │ │ ├── expected-dependencies-lock.json │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── postbuild.groovy ├── main │ ├── java │ │ └── se │ │ │ └── vandmo │ │ │ └── dependencylock │ │ │ └── maven │ │ │ ├── AbstractLockedEntries.java │ │ │ ├── Artifact.java │ │ │ ├── ArtifactIdentifier.java │ │ │ ├── Artifacts.java │ │ │ ├── Checksum.java │ │ │ ├── Dependencies.java │ │ │ ├── DependenciesLockFile.java │ │ │ ├── Dependency.java │ │ │ ├── DependencySetConfiguration.java │ │ │ ├── DiffHelper.java │ │ │ ├── DiffReport.java │ │ │ ├── Extension.java │ │ │ ├── Extensions.java │ │ │ ├── Filters.java │ │ │ ├── Integrity.java │ │ │ ├── LockFileAccessor.java │ │ │ ├── LockFileFormat.java │ │ │ ├── LockableEntities.java │ │ │ ├── LockableEntitiesWithArtifact.java │ │ │ ├── LockableEntity.java │ │ │ ├── LockableEntityWithArtifact.java │ │ │ ├── LockedArtifacts.java │ │ │ ├── LockedDependencies.java │ │ │ ├── LockedEntities.java │ │ │ ├── LockedExtensions.java │ │ │ ├── LockedParents.java │ │ │ ├── LockedPlugins.java │ │ │ ├── LockedProject.java │ │ │ ├── Lockfile.java │ │ │ ├── MavenArtifact.java │ │ │ ├── MojoExecutionRuntimeException.java │ │ │ ├── Parent.java │ │ │ ├── Parents.java │ │ │ ├── Plugin.java │ │ │ ├── Plugins.java │ │ │ ├── PomMinimums.java │ │ │ ├── Project.java │ │ │ ├── VersionUtils.java │ │ │ ├── json │ │ │ ├── DependenciesLockFileJson.java │ │ │ ├── JsonUtils.java │ │ │ └── LockfileJson.java │ │ │ ├── lang │ │ │ └── Strings.java │ │ │ ├── mojos │ │ │ ├── AbstractDependencyLockMojo.java │ │ │ ├── CheckMojo.java │ │ │ ├── DependencySet.java │ │ │ ├── LockMojo.java │ │ │ └── LockProjectHelper.java │ │ │ └── pom │ │ │ ├── DependenciesLockFilePom.java │ │ │ ├── InvalidPomLockFile.java │ │ │ ├── LockFilePom.java │ │ │ └── PomLockFile.java │ └── resources │ │ └── se │ │ └── vandmo │ │ └── dependencylock │ │ └── maven │ │ └── pom │ │ ├── extensions-pom.ftlx │ │ ├── parents-pom.ftlx │ │ ├── plugins-pom.ftlx │ │ └── pom.ftlx ├── site │ ├── site.xml │ └── xsd │ │ ├── dependencylock.xsd │ │ └── maven-4_0_0_ext.xsd └── test │ ├── java │ ├── ArtifactTests.java │ ├── DependencyTests.java │ └── se │ │ └── vandmo │ │ └── dependencylock │ │ └── maven │ │ ├── ChecksumTests.java │ │ ├── LockFileAccessorTests.java │ │ ├── ParentsTest.java │ │ ├── VersionUtilsTests.java │ │ ├── json │ │ └── JsonUtilsTests.java │ │ ├── lang │ │ └── StringsTests.java │ │ ├── mojos │ │ └── LockProjectHelperTest.java │ │ └── pom │ │ ├── LockFilePomTest.java │ │ └── PomLockFileTests.java │ └── resources │ └── se │ └── vandmo │ └── dependencylock │ └── maven │ ├── ParentsTest │ ├── from_returnsArtifactFileBasedInfoIfRelativePathEmpty.xml │ ├── from_returnsArtifactFileBasedInfoIfRelativePathEmpty_parent.xml │ ├── from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath.xml │ ├── from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath_parent.xml │ ├── from_returnsDirectIfRelativePathSetToAFilePath.xml │ ├── from_returnsDirectIfRelativePathSetToAFilePath_parent.xml │ └── from_returnsNullIfNoParentArtifact.xml │ ├── mojos │ └── LockProjectHelperTest │ │ ├── loadPlugins_appropriatelyHandlesProfilePlugin.xml │ │ ├── loadPlugins_appropriatelyIncludesManagedProfilePlugins.xml │ │ ├── loadPlugins_logsAWarningIfProfilePluginVersionManagedInProfile.xml │ │ ├── loadPlugins_logsNothingIfProfilePluginAppropriatelyDeclared.xml │ │ └── loadPlugins_supportsProfileWithNoBuild.xml │ └── poms │ ├── element-when-text.xml │ ├── no-artifactId.xml │ ├── no-dependencies.xml │ ├── no-groupId.xml │ ├── no-integrity.xml │ ├── no-optional.xml │ ├── no-scope.xml │ ├── no-type.xml │ ├── no-version.xml │ ├── text-then-element.xml │ ├── valid.xml │ ├── wrong-end.xml │ ├── wrong-optional.xml │ └── wrong-top.xml ├── tasks ├── create-test-dependencies ├── format ├── full-build ├── generate-sumtypes ├── list-checksum-for-test-dependencies ├── lock-dependencies ├── lock-dependencies-with-local └── update-test-build-dependencies └── test-resources.properties /.dependency-lock-0.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock-0.x/README.md -------------------------------------------------------------------------------- /.dependency-lock-0.x/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock-0.x/extensions/pom.xml -------------------------------------------------------------------------------- /.dependency-lock-0.x/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock-0.x/parents/pom.xml -------------------------------------------------------------------------------- /.dependency-lock-0.x/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock-0.x/plugins/pom.xml -------------------------------------------------------------------------------- /.dependency-lock-0.x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock-0.x/pom.xml -------------------------------------------------------------------------------- /.dependency-lock/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock/extensions/pom.xml -------------------------------------------------------------------------------- /.dependency-lock/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock/parents/pom.xml -------------------------------------------------------------------------------- /.dependency-lock/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock/plugins/pom.xml -------------------------------------------------------------------------------- /.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.github/workflows/deploy-site.yaml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.github/workflows/test-and-release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-maven-3.6.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.github/workflows/test-maven-3.6.3.yaml -------------------------------------------------------------------------------- /.github/workflows/test-maven-4.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.github/workflows/test-maven-4.0.0.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /java-sumtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/java-sumtypes.json -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /resources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/resources.properties -------------------------------------------------------------------------------- /spotbugs-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/spotbugs-suppressions.xml -------------------------------------------------------------------------------- /src/it/configuration/allow-extraneous/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-extraneous/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/allow-extraneous/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-extraneous/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/allow-extraneous/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-extraneous/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/allow-missing/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-missing/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/allow-missing/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-missing/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/allow-missing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/allow-missing/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/configuration-order/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/configuration-order/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/configuration-order/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/configuration-order/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/configuration-order/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/configuration-order/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/exclude-dependencyset/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/exclude-dependencyset/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/exclude-dependencyset/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/exclude-dependencyset/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/exclude-dependencyset/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/exclude-dependencyset/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/filename-check/anothername.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-check/anothername.json -------------------------------------------------------------------------------- /src/it/configuration/filename-check/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-check/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/filename-check/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-check/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/filename-check/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-check/postbuild.groovy -------------------------------------------------------------------------------- /src/it/configuration/filename-lock/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-lock/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/filename-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-lock/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/filename-lock/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/filename-lock/postbuild.groovy -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-marked/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-marked/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-marked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-marked/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-marked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-marked/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/dependee/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-on-folder/dependee/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/dependee/src/main/java/Foo.java: -------------------------------------------------------------------------------- 1 | public class Foo {} 2 | -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/dependent/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-on-folder/dependent/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/dependent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-on-folder/dependent/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = compile -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity-on-folder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity-on-folder/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/ignore-integrity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-integrity/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-version-marked/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version-marked/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/ignore-version-marked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version-marked/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/ignore-version-marked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version-marked/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/ignore-version/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/ignore-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/ignore-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/ignore-version/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/snapshot-version/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/snapshot-version/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/snapshot-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/snapshot-version/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/snapshot-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/snapshot-version/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/use-project-version/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/use-project-version/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/configuration/use-project-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/use-project-version/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/use-project-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/configuration/use-project-version/pom.xml -------------------------------------------------------------------------------- /src/it/failures/everything/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/everything/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/everything/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/everything/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/everything/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/everything/pom.xml -------------------------------------------------------------------------------- /src/it/failures/everything/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/everything/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/extraneous/dependencies-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies" : [] 3 | } 4 | -------------------------------------------------------------------------------- /src/it/failures/extraneous/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/extraneous/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/extraneous/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/extraneous/pom.xml -------------------------------------------------------------------------------- /src/it/failures/extraneous/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/extraneous/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/dependee/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/dependee/pom.xml -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/dependent/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/dependent/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/dependent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/dependent/pom.xml -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/dependent/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/dependent/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/integrity-on-folder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/integrity-on-folder/pom.xml -------------------------------------------------------------------------------- /src/it/failures/missing/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/missing/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/missing/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/missing/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/missing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/missing/pom.xml -------------------------------------------------------------------------------- /src/it/failures/missing/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/missing/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/not-project-version/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/not-project-version/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/not-project-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/not-project-version/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/not-project-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/not-project-version/pom.xml -------------------------------------------------------------------------------- /src/it/failures/not-project-version/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/not-project-version/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/wrong-integrity/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-integrity/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/wrong-integrity/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-integrity/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/wrong-integrity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-integrity/pom.xml -------------------------------------------------------------------------------- /src/it/failures/wrong-integrity/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-integrity/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/wrong-optional/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-optional/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/wrong-optional/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-optional/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/wrong-optional/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-optional/pom.xml -------------------------------------------------------------------------------- /src/it/failures/wrong-optional/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-optional/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/wrong-scope/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-scope/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/wrong-scope/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-scope/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/wrong-scope/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-scope/pom.xml -------------------------------------------------------------------------------- /src/it/failures/wrong-scope/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-scope/postbuild.groovy -------------------------------------------------------------------------------- /src/it/failures/wrong-version/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-version/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/failures/wrong-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-version/invoker.properties -------------------------------------------------------------------------------- /src/it/failures/wrong-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-version/pom.xml -------------------------------------------------------------------------------- /src/it/failures/wrong-version/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/failures/wrong-version/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/check-extensions/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-extensions/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/check-extensions/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-extensions/invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-extensions/pom.xml -------------------------------------------------------------------------------- /src/it/json/check-extensions/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-extensions/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/check-extensions/update-invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-extensions/update-invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-future-format/dependencies-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3" 3 | } 4 | -------------------------------------------------------------------------------- /src/it/json/check-future-format/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-future-format/invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-future-format/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-future-format/pom.xml -------------------------------------------------------------------------------- /src/it/json/check-future-format/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-future-format/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/check-parents/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-parents/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/check-parents/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-parents/invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-parents/pom.xml -------------------------------------------------------------------------------- /src/it/json/check-parents/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-parents/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/check-parents/update-invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-parents/update-invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-plugins/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-plugins/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/check-plugins/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-plugins/invoker.properties -------------------------------------------------------------------------------- /src/it/json/check-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-plugins/pom.xml -------------------------------------------------------------------------------- /src/it/json/check-plugins/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-plugins/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/check-plugins/update-invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check-plugins/update-invoker.properties -------------------------------------------------------------------------------- /src/it/json/check/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/check/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check/invoker.properties -------------------------------------------------------------------------------- /src/it/json/check/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check/pom.xml -------------------------------------------------------------------------------- /src/it/json/check/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/check/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock-build-with-extension/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-extension/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock-build-with-extension/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-extension/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock-build-with-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-extension/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-build-with-extension/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-extension/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock-build-with-local-parent/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-local-parent/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock-build-with-local-parent/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-local-parent/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock-build-with-local-parent/parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-local-parent/parent/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-build-with-local-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-local-parent/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-build-with-local-parent/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-local-parent/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock-build-with-parent/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-parent/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock-build-with-parent/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-parent/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock-build-with-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-parent/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-build-with-parent/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build-with-parent/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock-build/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock-build/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-build/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-build/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock-marked/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-marked/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock-marked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-marked/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock-marked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-marked/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock-marked/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock-marked/postbuild.groovy -------------------------------------------------------------------------------- /src/it/json/lock/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/json/lock/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock/invoker.properties -------------------------------------------------------------------------------- /src/it/json/lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock/pom.xml -------------------------------------------------------------------------------- /src/it/json/lock/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/json/lock/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/check-extensions/.dependency-lock/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-extensions/.dependency-lock/extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-extensions/.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-extensions/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-extensions/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-extensions/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/check-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-extensions/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-extensions/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/check-parents/.dependency-lock/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-parents/.dependency-lock/parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-parents/.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-parents/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-parents/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-parents/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/check-parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-parents/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-parents/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/check-plugins/.dependency-lock/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/.dependency-lock/plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-plugins/.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-plugins/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/check-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check-plugins/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/check-plugins/update-invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check-plugins/update-invoker.properties -------------------------------------------------------------------------------- /src/it/pom/check/.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/check/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check/pom.xml -------------------------------------------------------------------------------- /src/it/pom/check/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/check/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/future-format/.dependency-lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/future-format/.dependency-lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/future-format/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/future-format/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/future-format/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/future-format/pom.xml -------------------------------------------------------------------------------- /src/it/pom/future-format/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/future-format/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/expected/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/expected/extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/expected/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/expected/parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/expected/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/expected/plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-extension/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-extension/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/expected/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/expected/extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/expected/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/expected/parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/expected/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/expected/plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/parent/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-local-parent/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-local-parent/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/expected/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/expected/extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/expected/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/expected/parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/expected/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/expected/plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build-with-parent/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build-with-parent/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock-build/expected/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/expected/extensions/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build/expected/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/expected/parents/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build/expected/plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/expected/plugins/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-build/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-build/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock-marked/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-marked/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-marked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-marked/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock-marked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-marked/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock-marked/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock-marked/postbuild.groovy -------------------------------------------------------------------------------- /src/it/pom/lock/expected/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock/expected/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock/invoker.properties -------------------------------------------------------------------------------- /src/it/pom/lock/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock/pom.xml -------------------------------------------------------------------------------- /src/it/pom/lock/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/pom/lock/postbuild.groovy -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-classified-leaf-1.0-classy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-classified-leaf-1.0-classy.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-classified-leaf-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-classified-leaf-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-parent-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-parent-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-snapshot-leaf-1.5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-snapshot-leaf-1.5-SNAPSHOT.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-snapshot-leaf-1.5-SNAPSHOT.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-snapshot-leaf-1.5-SNAPSHOT.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-third-leaf-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-third-leaf-1.0.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-third-leaf-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-third-leaf-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-war-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-war-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/a-war-1.0.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/a-war-1.0.war -------------------------------------------------------------------------------- /src/it/setup/dependencies/another-leaf-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/another-leaf-1.0.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/another-leaf-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/another-leaf-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/another-parent-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/another-parent-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/leaf-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/leaf-1.0.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/leaf-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/leaf-1.0.pom -------------------------------------------------------------------------------- /src/it/setup/dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/pom.xml -------------------------------------------------------------------------------- /src/it/setup/dependencies/with-dependency-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/with-dependency-1.0.jar -------------------------------------------------------------------------------- /src/it/setup/dependencies/with-dependency-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/setup/dependencies/with-dependency-1.0.pom -------------------------------------------------------------------------------- /src/it/transitivity/checked/dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/checked/dependencies-lock.json -------------------------------------------------------------------------------- /src/it/transitivity/checked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/checked/invoker.properties -------------------------------------------------------------------------------- /src/it/transitivity/checked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/checked/pom.xml -------------------------------------------------------------------------------- /src/it/transitivity/checked/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/checked/postbuild.groovy -------------------------------------------------------------------------------- /src/it/transitivity/locked/expected-dependencies-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/locked/expected-dependencies-lock.json -------------------------------------------------------------------------------- /src/it/transitivity/locked/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/locked/invoker.properties -------------------------------------------------------------------------------- /src/it/transitivity/locked/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/locked/pom.xml -------------------------------------------------------------------------------- /src/it/transitivity/locked/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/it/transitivity/locked/postbuild.groovy -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/AbstractLockedEntries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/AbstractLockedEntries.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Artifact.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/ArtifactIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/ArtifactIdentifier.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Artifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Artifacts.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Checksum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Checksum.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Dependencies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Dependencies.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/DependenciesLockFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/DependenciesLockFile.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Dependency.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/DependencySetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/DependencySetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/DiffHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/DiffHelper.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/DiffReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/DiffReport.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Extension.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Extensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Extensions.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Filters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Filters.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Integrity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Integrity.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockFileAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockFileAccessor.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockFileFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockFileFormat.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockableEntities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockableEntities.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockableEntitiesWithArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockableEntitiesWithArtifact.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockableEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockableEntity.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockableEntityWithArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockableEntityWithArtifact.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedArtifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedArtifacts.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedDependencies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedDependencies.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedEntities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedEntities.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedExtensions.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedParents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedParents.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedPlugins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedPlugins.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/LockedProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/LockedProject.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Lockfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Lockfile.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/MavenArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/MavenArtifact.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/MojoExecutionRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/MojoExecutionRuntimeException.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Parent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Parent.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Parents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Parents.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Plugin.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Plugins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Plugins.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/PomMinimums.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/PomMinimums.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/Project.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/VersionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/VersionUtils.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/json/DependenciesLockFileJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/json/DependenciesLockFileJson.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/json/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/json/JsonUtils.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/json/LockfileJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/json/LockfileJson.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/lang/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/lang/Strings.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/mojos/AbstractDependencyLockMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/mojos/AbstractDependencyLockMojo.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/mojos/CheckMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/mojos/CheckMojo.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/mojos/DependencySet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/mojos/DependencySet.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/mojos/LockMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/mojos/LockMojo.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/mojos/LockProjectHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/mojos/LockProjectHelper.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/pom/DependenciesLockFilePom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/pom/DependenciesLockFilePom.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/pom/InvalidPomLockFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/pom/InvalidPomLockFile.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/pom/LockFilePom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/pom/LockFilePom.java -------------------------------------------------------------------------------- /src/main/java/se/vandmo/dependencylock/maven/pom/PomLockFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/java/se/vandmo/dependencylock/maven/pom/PomLockFile.java -------------------------------------------------------------------------------- /src/main/resources/se/vandmo/dependencylock/maven/pom/extensions-pom.ftlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/resources/se/vandmo/dependencylock/maven/pom/extensions-pom.ftlx -------------------------------------------------------------------------------- /src/main/resources/se/vandmo/dependencylock/maven/pom/parents-pom.ftlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/resources/se/vandmo/dependencylock/maven/pom/parents-pom.ftlx -------------------------------------------------------------------------------- /src/main/resources/se/vandmo/dependencylock/maven/pom/plugins-pom.ftlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/resources/se/vandmo/dependencylock/maven/pom/plugins-pom.ftlx -------------------------------------------------------------------------------- /src/main/resources/se/vandmo/dependencylock/maven/pom/pom.ftlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/main/resources/se/vandmo/dependencylock/maven/pom/pom.ftlx -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xsd/dependencylock.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/site/xsd/dependencylock.xsd -------------------------------------------------------------------------------- /src/site/xsd/maven-4_0_0_ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/site/xsd/maven-4_0_0_ext.xsd -------------------------------------------------------------------------------- /src/test/java/ArtifactTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/ArtifactTests.java -------------------------------------------------------------------------------- /src/test/java/DependencyTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/DependencyTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/ChecksumTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/ChecksumTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/LockFileAccessorTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/LockFileAccessorTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/ParentsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/ParentsTest.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/VersionUtilsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/VersionUtilsTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/json/JsonUtilsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/json/JsonUtilsTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/lang/StringsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/lang/StringsTests.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/pom/LockFilePomTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/pom/LockFilePomTest.java -------------------------------------------------------------------------------- /src/test/java/se/vandmo/dependencylock/maven/pom/PomLockFileTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/java/se/vandmo/dependencylock/maven/pom/PomLockFileTests.java -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsArtifactFileBasedInfoIfRelativePathEmpty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsArtifactFileBasedInfoIfRelativePathEmpty.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsArtifactFileBasedInfoIfRelativePathEmpty_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsArtifactFileBasedInfoIfRelativePathEmpty_parent.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirBasedInfoIfRelativePathSetToADirectoryPath_parent.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirectIfRelativePathSetToAFilePath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirectIfRelativePathSetToAFilePath.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirectIfRelativePathSetToAFilePath_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsDirectIfRelativePathSetToAFilePath_parent.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsNullIfNoParentArtifact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/ParentsTest/from_returnsNullIfNoParentArtifact.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_appropriatelyHandlesProfilePlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_appropriatelyHandlesProfilePlugin.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_appropriatelyIncludesManagedProfilePlugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_appropriatelyIncludesManagedProfilePlugins.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_logsAWarningIfProfilePluginVersionManagedInProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_logsAWarningIfProfilePluginVersionManagedInProfile.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_logsNothingIfProfilePluginAppropriatelyDeclared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_logsNothingIfProfilePluginAppropriatelyDeclared.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_supportsProfileWithNoBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/mojos/LockProjectHelperTest/loadPlugins_supportsProfileWithNoBuild.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/element-when-text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/element-when-text.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-artifactId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-artifactId.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-dependencies.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-groupId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-groupId.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-integrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-integrity.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-optional.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-optional.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-scope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-scope.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-type.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/no-version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/no-version.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/text-then-element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/text-then-element.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/valid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/valid.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-end.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-optional.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-optional.xml -------------------------------------------------------------------------------- /src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/src/test/resources/se/vandmo/dependencylock/maven/poms/wrong-top.xml -------------------------------------------------------------------------------- /tasks/create-test-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/create-test-dependencies -------------------------------------------------------------------------------- /tasks/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/format -------------------------------------------------------------------------------- /tasks/full-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/full-build -------------------------------------------------------------------------------- /tasks/generate-sumtypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/generate-sumtypes -------------------------------------------------------------------------------- /tasks/list-checksum-for-test-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/list-checksum-for-test-dependencies -------------------------------------------------------------------------------- /tasks/lock-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/lock-dependencies -------------------------------------------------------------------------------- /tasks/lock-dependencies-with-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/lock-dependencies-with-local -------------------------------------------------------------------------------- /tasks/update-test-build-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandmo/dependency-lock-maven-plugin/HEAD/tasks/update-test-build-dependencies -------------------------------------------------------------------------------- /test-resources.properties: -------------------------------------------------------------------------------- 1 | xsd_dest=. --------------------------------------------------------------------------------