├── .editorconfig ├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── .idea ├── .name ├── checkstyle-idea.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── deployment.xml ├── kotlinScripting.xml ├── saveactions_settings.xml └── vcs.xml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── intTest ├── kotlin │ └── com │ │ └── github │ │ └── edeandrea │ │ └── xjcplugin │ │ ├── AbstractIntegrationTests.kt │ │ └── plugin │ │ ├── Helpers.kt │ │ ├── XjcFailingMixedSchemaTypesIntegrationTests.kt │ │ ├── XjcFlagsIntegrationTests.kt │ │ └── XjcPluginIntegrationTests.kt └── resources │ ├── com │ └── github │ │ └── edeandrea │ │ └── xjcplugin │ │ └── plugin │ │ ├── XjcFailingMixedSchemaTypesIntegrationTests │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── schemas │ │ │ └── xjc │ │ │ └── schema-dir-with-2-schemas │ │ │ ├── artifactory-1.0.xsd │ │ │ └── calculator.wsdl │ │ ├── XjcFlagsIntegrationTests │ │ ├── build.gradle │ │ ├── expected │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── schemas │ │ │ │ └── xjc │ │ │ │ └── ch │ │ │ │ └── forum_datenaustausch │ │ │ │ └── invoice400 │ │ │ │ ├── BalanceType.java │ │ │ │ ├── BankAddressType.java │ │ │ │ ├── BillerAddressType.java │ │ │ │ ├── CompanyType.java │ │ │ │ ├── CreditInfoType.java │ │ │ │ ├── DataValidatorType.java │ │ │ │ ├── DetailType.java │ │ │ │ ├── DiagnosisType.java │ │ │ │ ├── EmployerAddressType.java │ │ │ │ ├── Esr5Type.java │ │ │ │ ├── Esr9Type.java │ │ │ │ ├── EsrRedType.java │ │ │ │ ├── GarantType.java │ │ │ │ ├── GeneratorType.java │ │ │ │ ├── GuarantorAddressType.java │ │ │ │ ├── HeaderPartyType.java │ │ │ │ ├── HeaderType.java │ │ │ │ ├── InsuranceAddressType.java │ │ │ │ ├── InvoiceType.java │ │ │ │ ├── IvgLawType.java │ │ │ │ ├── KvgLawType.java │ │ │ │ ├── MvgLawType.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── OnlineAddressType.java │ │ │ │ ├── OrgLawType.java │ │ │ │ ├── PatientAddressType.java │ │ │ │ ├── PayantType.java │ │ │ │ ├── PersonType.java │ │ │ │ ├── PostalAddressType.java │ │ │ │ ├── PrologType.java │ │ │ │ ├── ProviderAddressType.java │ │ │ │ ├── RecordCantonalType.java │ │ │ │ ├── RecordDentalType.java │ │ │ │ ├── RecordDrugType.java │ │ │ │ ├── RecordLabType.java │ │ │ │ ├── RecordMigelType.java │ │ │ │ ├── RecordPhysioType.java │ │ │ │ ├── RecordTarmedType.java │ │ │ │ ├── RecordUnclassifiedType.java │ │ │ │ ├── ReferrerAddressType.java │ │ │ │ ├── RequestType.java │ │ │ │ ├── ServicesType.java │ │ │ │ ├── SoftwareType.java │ │ │ │ ├── TelecomAddressType.java │ │ │ │ ├── UvgLawType.java │ │ │ │ ├── VatRateType.java │ │ │ │ ├── VatType.java │ │ │ │ ├── VvgLawType.java │ │ │ │ ├── XtendHeaderPartyType.java │ │ │ │ ├── ZipType.java │ │ │ │ └── package-info.java │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ └── schemas │ │ │ └── xjc │ │ │ ├── invalidUtfChars │ │ │ └── generalInvoiceRequest_400.xsd │ │ │ └── xjc.xjb.xml │ │ └── XjcPluginIntegrationTests │ │ ├── build.gradle │ │ ├── expected │ │ ├── misc │ │ │ └── resources │ │ │ │ └── schemas │ │ │ │ ├── artifactory │ │ │ │ └── com │ │ │ │ │ └── github │ │ │ │ │ └── edeandrea │ │ │ │ │ └── xjcplugin │ │ │ │ │ └── generated │ │ │ │ │ └── artifactory │ │ │ │ │ ├── AqlUISearchModel.java │ │ │ │ │ ├── Artifact.java │ │ │ │ │ ├── BaseArtifact.java │ │ │ │ │ ├── BaseBuildBean.java │ │ │ │ │ ├── BaseBuildFileBean.java │ │ │ │ │ ├── BaseModel.java │ │ │ │ │ ├── BaseSearchResult.java │ │ │ │ │ ├── BuildArtifactsMapping.java │ │ │ │ │ ├── BuildArtifactsRequest.java │ │ │ │ │ ├── BuildPatternArtifacts.java │ │ │ │ │ ├── BuildPatternArtifactsRequest.java │ │ │ │ │ ├── CrowdExtGroup.java │ │ │ │ │ ├── CrowdGroupModel.java │ │ │ │ │ ├── DeleteArtifactVersion.java │ │ │ │ │ ├── Dependency.java │ │ │ │ │ ├── FeedbackMsg.java │ │ │ │ │ ├── GeneralTabLicenseModel.java │ │ │ │ │ ├── Module.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── Pattern.java │ │ │ │ │ ├── PatternArtifact.java │ │ │ │ │ ├── PatternResult.java │ │ │ │ │ ├── ReplicationRequest.java │ │ │ │ │ ├── RepoDetails.java │ │ │ │ │ ├── RepoDetailsType.java │ │ │ │ │ ├── RepoKeyPath.java │ │ │ │ │ ├── UserProfileModel.java │ │ │ │ │ └── XrayRepoModel.java │ │ │ │ ├── schemaDirWith2RelatedSchemas │ │ │ │ └── com │ │ │ │ │ └── github │ │ │ │ │ └── edeandrea │ │ │ │ │ └── xjcplugin │ │ │ │ │ └── generated │ │ │ │ │ └── schemadirwith2relatedschemas │ │ │ │ │ ├── product │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── Product.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── type │ │ │ │ │ ├── GenericTitledElement.java │ │ │ │ │ ├── Id.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ └── package-info.java │ │ │ │ └── schemaDirWith2Schemas │ │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── edeandrea │ │ │ │ └── xjcplugin │ │ │ │ └── generated │ │ │ │ └── schemadirwith2schemas │ │ │ │ ├── Add.java │ │ │ │ ├── AddResponse.java │ │ │ │ ├── AqlUISearchModel.java │ │ │ │ ├── Artifact.java │ │ │ │ ├── BaseArtifact.java │ │ │ │ ├── BaseBuildBean.java │ │ │ │ ├── BaseBuildFileBean.java │ │ │ │ ├── BaseModel.java │ │ │ │ ├── BaseSearchResult.java │ │ │ │ ├── BuildArtifactsMapping.java │ │ │ │ ├── BuildArtifactsRequest.java │ │ │ │ ├── BuildPatternArtifacts.java │ │ │ │ ├── BuildPatternArtifactsRequest.java │ │ │ │ ├── CrowdExtGroup.java │ │ │ │ ├── CrowdGroupModel.java │ │ │ │ ├── DeleteArtifactVersion.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── FeedbackMsg.java │ │ │ │ ├── GeneralTabLicenseModel.java │ │ │ │ ├── Module.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Pattern.java │ │ │ │ ├── PatternArtifact.java │ │ │ │ ├── PatternResult.java │ │ │ │ ├── ReplicationRequest.java │ │ │ │ ├── RepoDetails.java │ │ │ │ ├── RepoDetailsType.java │ │ │ │ ├── RepoKeyPath.java │ │ │ │ ├── UserProfileModel.java │ │ │ │ ├── XrayRepoModel.java │ │ │ │ └── package-info.java │ │ └── src │ │ │ ├── intTest │ │ │ └── schemas │ │ │ │ └── xjc │ │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── edeandrea │ │ │ │ └── xjcplugin │ │ │ │ └── generated │ │ │ │ ├── overriddenoutputroot │ │ │ │ ├── Activation.java │ │ │ │ ├── ActivationFile.java │ │ │ │ ├── ActivationOS.java │ │ │ │ ├── ActivationProperty.java │ │ │ │ ├── Build.java │ │ │ │ ├── BuildBase.java │ │ │ │ ├── CiManagement.java │ │ │ │ ├── Contributor.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── DependencyManagement.java │ │ │ │ ├── DeploymentRepository.java │ │ │ │ ├── Developer.java │ │ │ │ ├── DistributionManagement.java │ │ │ │ ├── Exclusion.java │ │ │ │ ├── Extension.java │ │ │ │ ├── IssueManagement.java │ │ │ │ ├── License.java │ │ │ │ ├── MailingList.java │ │ │ │ ├── Notifier.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Organization.java │ │ │ │ ├── Parent.java │ │ │ │ ├── Plugin.java │ │ │ │ ├── PluginExecution.java │ │ │ │ ├── PluginManagement.java │ │ │ │ ├── Prerequisites.java │ │ │ │ ├── Profile.java │ │ │ │ ├── Project.java │ │ │ │ ├── Relocation.java │ │ │ │ ├── ReportPlugin.java │ │ │ │ ├── ReportSet.java │ │ │ │ ├── Reporting.java │ │ │ │ ├── Repository.java │ │ │ │ ├── RepositoryPolicy.java │ │ │ │ ├── Resource.java │ │ │ │ ├── Scm.java │ │ │ │ ├── Site.java │ │ │ │ └── package-info.java │ │ │ │ └── overriddenoutputrootfile │ │ │ │ ├── AqlUISearchModel.java │ │ │ │ ├── Artifact.java │ │ │ │ ├── BaseArtifact.java │ │ │ │ ├── BaseBuildBean.java │ │ │ │ ├── BaseBuildFileBean.java │ │ │ │ ├── BaseModel.java │ │ │ │ ├── BaseSearchResult.java │ │ │ │ ├── BuildArtifactsMapping.java │ │ │ │ ├── BuildArtifactsRequest.java │ │ │ │ ├── BuildPatternArtifacts.java │ │ │ │ ├── BuildPatternArtifactsRequest.java │ │ │ │ ├── CrowdExtGroup.java │ │ │ │ ├── CrowdGroupModel.java │ │ │ │ ├── DeleteArtifactVersion.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── FeedbackMsg.java │ │ │ │ ├── GeneralTabLicenseModel.java │ │ │ │ ├── Module.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Pattern.java │ │ │ │ ├── PatternArtifact.java │ │ │ │ ├── PatternResult.java │ │ │ │ ├── ReplicationRequest.java │ │ │ │ ├── RepoDetails.java │ │ │ │ ├── RepoDetailsType.java │ │ │ │ ├── RepoKeyPath.java │ │ │ │ ├── UserProfileModel.java │ │ │ │ └── XrayRepoModel.java │ │ │ ├── main │ │ │ └── schemas │ │ │ │ └── xjc │ │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── edeandrea │ │ │ │ └── xjcplugin │ │ │ │ └── generated │ │ │ │ ├── maven2 │ │ │ │ ├── Activation.java │ │ │ │ ├── ActivationFile.java │ │ │ │ ├── ActivationOS.java │ │ │ │ ├── ActivationProperty.java │ │ │ │ ├── Build.java │ │ │ │ ├── BuildBase.java │ │ │ │ ├── CiManagement.java │ │ │ │ ├── Contributor.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── DependencyManagement.java │ │ │ │ ├── DeploymentRepository.java │ │ │ │ ├── Developer.java │ │ │ │ ├── DistributionManagement.java │ │ │ │ ├── Exclusion.java │ │ │ │ ├── Extension.java │ │ │ │ ├── IssueManagement.java │ │ │ │ ├── License.java │ │ │ │ ├── MailingList.java │ │ │ │ ├── Notifier.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Organization.java │ │ │ │ ├── Parent.java │ │ │ │ ├── Plugin.java │ │ │ │ ├── PluginExecution.java │ │ │ │ ├── PluginManagement.java │ │ │ │ ├── Prerequisites.java │ │ │ │ ├── Profile.java │ │ │ │ ├── Project.java │ │ │ │ ├── Relocation.java │ │ │ │ ├── ReportPlugin.java │ │ │ │ ├── ReportSet.java │ │ │ │ ├── Reporting.java │ │ │ │ ├── Repository.java │ │ │ │ ├── RepositoryPolicy.java │ │ │ │ ├── Resource.java │ │ │ │ ├── Scm.java │ │ │ │ ├── Site.java │ │ │ │ └── package-info.java │ │ │ │ └── schemadirwithnestedfolders │ │ │ │ ├── Add.java │ │ │ │ ├── AddResponse.java │ │ │ │ ├── AqlUISearchModel.java │ │ │ │ ├── Artifact.java │ │ │ │ ├── BaseArtifact.java │ │ │ │ ├── BaseBuildBean.java │ │ │ │ ├── BaseBuildFileBean.java │ │ │ │ ├── BaseModel.java │ │ │ │ ├── BaseSearchResult.java │ │ │ │ ├── BuildArtifactsMapping.java │ │ │ │ ├── BuildArtifactsRequest.java │ │ │ │ ├── BuildPatternArtifacts.java │ │ │ │ ├── BuildPatternArtifactsRequest.java │ │ │ │ ├── CrowdExtGroup.java │ │ │ │ ├── CrowdGroupModel.java │ │ │ │ ├── DeleteArtifactVersion.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── FeedbackMsg.java │ │ │ │ ├── GeneralTabLicenseModel.java │ │ │ │ ├── Module.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── Pattern.java │ │ │ │ ├── PatternArtifact.java │ │ │ │ ├── PatternResult.java │ │ │ │ ├── ReplicationRequest.java │ │ │ │ ├── RepoDetails.java │ │ │ │ ├── RepoDetailsType.java │ │ │ │ ├── RepoKeyPath.java │ │ │ │ ├── UserProfileModel.java │ │ │ │ ├── XrayRepoModel.java │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── schemas │ │ │ └── xjc │ │ │ └── com │ │ │ └── github │ │ │ └── edeandrea │ │ │ └── xjcplugin │ │ │ └── generated │ │ │ └── maven │ │ │ ├── Activation.java │ │ │ ├── ActivationFile.java │ │ │ ├── ActivationOS.java │ │ │ ├── ActivationProperty.java │ │ │ ├── Build.java │ │ │ ├── BuildBase.java │ │ │ ├── CiManagement.java │ │ │ ├── Contributor.java │ │ │ ├── Dependency.java │ │ │ ├── DependencyManagement.java │ │ │ ├── DeploymentRepository.java │ │ │ ├── Developer.java │ │ │ ├── DistributionManagement.java │ │ │ ├── Exclusion.java │ │ │ ├── Extension.java │ │ │ ├── IssueManagement.java │ │ │ ├── License.java │ │ │ ├── MailingList.java │ │ │ ├── Notifier.java │ │ │ ├── ObjectFactory.java │ │ │ ├── Organization.java │ │ │ ├── Parent.java │ │ │ ├── Plugin.java │ │ │ ├── PluginExecution.java │ │ │ ├── PluginManagement.java │ │ │ ├── Prerequisites.java │ │ │ ├── Profile.java │ │ │ ├── Project.java │ │ │ ├── Relocation.java │ │ │ ├── ReportPlugin.java │ │ │ ├── ReportSet.java │ │ │ ├── Reporting.java │ │ │ ├── Repository.java │ │ │ ├── RepositoryPolicy.java │ │ │ ├── Resource.java │ │ │ ├── Scm.java │ │ │ ├── Site.java │ │ │ └── package-info.java │ │ ├── misc │ │ └── resources │ │ │ └── schemas │ │ │ ├── artifactory.xsd │ │ │ ├── schema-dir-with-2-related-schemas │ │ │ ├── xjb │ │ │ │ └── bindings.xjb │ │ │ └── xsd │ │ │ │ ├── product.xsd │ │ │ │ └── type.xsd │ │ │ ├── schema-dir-with-2-schemas │ │ │ ├── artifactory-1.0.xsd │ │ │ └── calculator.wsdl │ │ │ └── schema-dir-with-2-wsdls │ │ │ ├── calculator-add.wsdl │ │ │ └── calculator-substract.wsdl │ │ ├── settings.gradle │ │ └── src │ │ ├── intTest │ │ └── schemas │ │ │ └── xjc │ │ │ ├── artifactory.xsd │ │ │ └── maven-4.0 │ │ │ └── maven-4.0.xsd │ │ ├── main │ │ └── schemas │ │ │ └── xjc │ │ │ ├── maven-4.0 │ │ │ └── maven-4.0.xsd │ │ │ ├── schemaDirWithNestedFolders │ │ │ └── root │ │ │ │ ├── calculator.wsdl │ │ │ │ └── nested1 │ │ │ │ └── nested2 │ │ │ │ └── artifactory-1.xsd │ │ │ └── xjc.xjb.xml │ │ └── test │ │ └── schemas │ │ └── xjc │ │ └── maven-4.0.0 │ │ └── maven-4.0.0.xsd │ └── junit-platform.properties ├── main └── kotlin │ └── com │ └── github │ └── edeandrea │ └── xjcplugin │ ├── domain │ └── XjcDomain.kt │ ├── plugin │ └── XjcPlugin.kt │ └── type │ └── Xjc.kt └── test ├── kotlin └── com │ └── github │ └── edeandrea │ └── xjcplugin │ ├── AbstractUnitTests.kt │ ├── plugin │ └── XjcPluginUnitTests.kt │ └── type │ └── XjcTest.kt └── resources └── junit-platform.properties /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | xjc-generation-gradle-plugin -------------------------------------------------------------------------------- /.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/kotlinScripting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/kotlinScripting.xml -------------------------------------------------------------------------------- /.idea/saveactions_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/saveactions_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'xjc-generation-gradle-plugin' 2 | -------------------------------------------------------------------------------- /src/intTest/kotlin/com/github/edeandrea/xjcplugin/AbstractIntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/kotlin/com/github/edeandrea/xjcplugin/AbstractIntegrationTests.kt -------------------------------------------------------------------------------- /src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/Helpers.kt -------------------------------------------------------------------------------- /src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests.kt -------------------------------------------------------------------------------- /src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests.kt -------------------------------------------------------------------------------- /src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests.kt -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/build.gradle -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'XjcFailingMixedSchemaTypesIntegrationTests' 2 | -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/src/main/schemas/xjc/schema-dir-with-2-schemas/artifactory-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/src/main/schemas/xjc/schema-dir-with-2-schemas/artifactory-1.0.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/src/main/schemas/xjc/schema-dir-with-2-schemas/calculator.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFailingMixedSchemaTypesIntegrationTests/src/main/schemas/xjc/schema-dir-with-2-schemas/calculator.wsdl -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/build.gradle -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BalanceType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BalanceType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BankAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BankAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BillerAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/BillerAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/CompanyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/CompanyType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/CreditInfoType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/CreditInfoType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DataValidatorType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DataValidatorType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DetailType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DetailType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DiagnosisType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/DiagnosisType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/EmployerAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/EmployerAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/Esr5Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/Esr5Type.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/Esr9Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/Esr9Type.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/EsrRedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/EsrRedType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GarantType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GarantType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GeneratorType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GeneratorType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GuarantorAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/GuarantorAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/HeaderPartyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/HeaderPartyType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/HeaderType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/HeaderType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/InsuranceAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/InsuranceAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/InvoiceType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/InvoiceType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/IvgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/IvgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/KvgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/KvgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/MvgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/MvgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/OnlineAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/OnlineAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/OrgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/OrgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PatientAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PatientAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PayantType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PayantType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PersonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PersonType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PostalAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PostalAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PrologType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/PrologType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ProviderAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ProviderAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordCantonalType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordCantonalType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordDentalType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordDentalType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordDrugType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordDrugType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordLabType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordLabType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordMigelType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordMigelType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordPhysioType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordPhysioType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordTarmedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordTarmedType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordUnclassifiedType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RecordUnclassifiedType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ReferrerAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ReferrerAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RequestType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/RequestType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ServicesType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ServicesType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/SoftwareType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/SoftwareType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/TelecomAddressType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/TelecomAddressType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/UvgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/UvgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VatRateType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VatRateType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VatType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VatType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VvgLawType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/VvgLawType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/XtendHeaderPartyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/XtendHeaderPartyType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ZipType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/ZipType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/expected/src/main/schemas/xjc/ch/forum_datenaustausch/invoice400/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'XjcFlagsTests' 2 | -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/src/main/schemas/xjc/invalidUtfChars/generalInvoiceRequest_400.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/src/main/schemas/xjc/invalidUtfChars/generalInvoiceRequest_400.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/src/main/schemas/xjc/xjc.xjb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcFlagsIntegrationTests/src/main/schemas/xjc/xjc.xjb.xml -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/build.gradle -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/AqlUISearchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/AqlUISearchModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Artifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseBuildBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseBuildBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseBuildFileBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseBuildFileBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseSearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BaseSearchResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildArtifactsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildArtifactsMapping.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildPatternArtifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildPatternArtifacts.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildPatternArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/BuildPatternArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/CrowdExtGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/CrowdExtGroup.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/CrowdGroupModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/CrowdGroupModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/DeleteArtifactVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/DeleteArtifactVersion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/FeedbackMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/FeedbackMsg.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/GeneralTabLicenseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/GeneralTabLicenseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Module.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/Pattern.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/PatternArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/PatternArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/PatternResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/PatternResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/ReplicationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/ReplicationRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoDetails.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoDetailsType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoDetailsType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoKeyPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/RepoKeyPath.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/UserProfileModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/UserProfileModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/XrayRepoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/artifactory/com/github/edeandrea/xjcplugin/generated/artifactory/XrayRepoModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/Product.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/product/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/GenericTitledElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/GenericTitledElement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/Id.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/Id.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2RelatedSchemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2relatedschemas/type/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Add.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/AddResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/AddResponse.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/AqlUISearchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/AqlUISearchModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Artifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseBuildBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseBuildBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseBuildFileBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseBuildFileBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseSearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BaseSearchResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildArtifactsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildArtifactsMapping.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildPatternArtifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildPatternArtifacts.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildPatternArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/BuildPatternArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/CrowdExtGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/CrowdExtGroup.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/CrowdGroupModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/CrowdGroupModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/DeleteArtifactVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/DeleteArtifactVersion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/FeedbackMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/FeedbackMsg.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/GeneralTabLicenseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/GeneralTabLicenseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Module.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/Pattern.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/PatternArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/PatternArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/PatternResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/PatternResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/ReplicationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/ReplicationRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoDetails.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoDetailsType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoDetailsType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoKeyPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/RepoKeyPath.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/UserProfileModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/UserProfileModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/XrayRepoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/XrayRepoModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/misc/resources/schemas/schemaDirWith2Schemas/com/github/edeandrea/xjcplugin/generated/schemadirwith2schemas/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Activation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Activation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationFile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationOS.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ActivationProperty.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Build.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Build.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/BuildBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/BuildBase.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/CiManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/CiManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Contributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Contributor.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DependencyManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DependencyManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DeploymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DeploymentRepository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Developer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Developer.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DistributionManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/DistributionManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Exclusion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Exclusion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Extension.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/IssueManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/IssueManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/License.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/MailingList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/MailingList.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Notifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Notifier.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Organization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Organization.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Parent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Parent.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Plugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/PluginExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/PluginExecution.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/PluginManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/PluginManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Prerequisites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Prerequisites.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Profile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Profile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Project.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Relocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Relocation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ReportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ReportPlugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ReportSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/ReportSet.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Reporting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Reporting.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Repository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/RepositoryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/RepositoryPolicy.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Resource.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Scm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Scm.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Site.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/Site.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputroot/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/AqlUISearchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/AqlUISearchModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Artifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseBuildBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseBuildBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseBuildFileBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseBuildFileBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseSearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BaseSearchResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildArtifactsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildArtifactsMapping.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildPatternArtifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildPatternArtifacts.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildPatternArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/BuildPatternArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/CrowdExtGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/CrowdExtGroup.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/CrowdGroupModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/CrowdGroupModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/DeleteArtifactVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/DeleteArtifactVersion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/FeedbackMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/FeedbackMsg.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/GeneralTabLicenseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/GeneralTabLicenseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Module.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/Pattern.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/PatternArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/PatternArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/PatternResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/PatternResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/ReplicationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/ReplicationRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoDetails.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoDetailsType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoDetailsType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoKeyPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/RepoKeyPath.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/UserProfileModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/UserProfileModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/XrayRepoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/intTest/schemas/xjc/com/github/edeandrea/xjcplugin/generated/overriddenoutputrootfile/XrayRepoModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Activation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Activation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationFile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationOS.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ActivationProperty.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Build.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Build.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/BuildBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/BuildBase.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/CiManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/CiManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Contributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Contributor.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DependencyManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DependencyManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DeploymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DeploymentRepository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Developer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Developer.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DistributionManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/DistributionManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Exclusion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Exclusion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Extension.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/IssueManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/IssueManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/License.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/MailingList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/MailingList.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Notifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Notifier.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Organization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Organization.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Parent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Parent.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Plugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/PluginExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/PluginExecution.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/PluginManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/PluginManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Prerequisites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Prerequisites.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Profile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Profile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Project.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Relocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Relocation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ReportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ReportPlugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ReportSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/ReportSet.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Reporting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Reporting.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Repository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/RepositoryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/RepositoryPolicy.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Resource.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Scm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Scm.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Site.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/Site.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven2/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Add.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/AddResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/AddResponse.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/AqlUISearchModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/AqlUISearchModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Artifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Artifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseBuildBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseBuildBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseBuildFileBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseBuildFileBean.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseSearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BaseSearchResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildArtifactsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildArtifactsMapping.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildPatternArtifacts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildPatternArtifacts.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildPatternArtifactsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/BuildPatternArtifactsRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/CrowdExtGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/CrowdExtGroup.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/CrowdGroupModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/CrowdGroupModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/DeleteArtifactVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/DeleteArtifactVersion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/FeedbackMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/FeedbackMsg.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/GeneralTabLicenseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/GeneralTabLicenseModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Module.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/Pattern.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/PatternArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/PatternArtifact.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/PatternResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/PatternResult.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/ReplicationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/ReplicationRequest.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoDetails.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoDetailsType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoDetailsType.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoKeyPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/RepoKeyPath.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/UserProfileModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/UserProfileModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/XrayRepoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/XrayRepoModel.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/main/schemas/xjc/com/github/edeandrea/xjcplugin/generated/schemadirwithnestedfolders/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Activation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Activation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationFile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationOS.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ActivationProperty.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Build.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Build.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/BuildBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/BuildBase.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/CiManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/CiManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Contributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Contributor.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Dependency.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DependencyManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DependencyManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DeploymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DeploymentRepository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Developer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Developer.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DistributionManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/DistributionManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Exclusion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Exclusion.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Extension.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/IssueManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/IssueManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/License.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/MailingList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/MailingList.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Notifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Notifier.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ObjectFactory.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Organization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Organization.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Parent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Parent.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Plugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/PluginExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/PluginExecution.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/PluginManagement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/PluginManagement.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Prerequisites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Prerequisites.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Profile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Profile.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Project.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Relocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Relocation.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ReportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ReportPlugin.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ReportSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/ReportSet.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Reporting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Reporting.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Repository.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/RepositoryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/RepositoryPolicy.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Resource.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Scm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Scm.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Site.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/Site.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/expected/src/test/schemas/xjc/com/github/edeandrea/xjcplugin/generated/maven/package-info.java -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/artifactory.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/artifactory.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xjb/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xjb/bindings.xjb -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xsd/product.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xsd/product.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xsd/type.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-related-schemas/xsd/type.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-schemas/artifactory-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-schemas/artifactory-1.0.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-schemas/calculator.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-schemas/calculator.wsdl -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-wsdls/calculator-add.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-wsdls/calculator-add.wsdl -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-wsdls/calculator-substract.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/misc/resources/schemas/schema-dir-with-2-wsdls/calculator-substract.wsdl -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'XjcPluginIntegrationTests' 2 | -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/intTest/schemas/xjc/artifactory.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/intTest/schemas/xjc/artifactory.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/intTest/schemas/xjc/maven-4.0/maven-4.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/intTest/schemas/xjc/maven-4.0/maven-4.0.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/maven-4.0/maven-4.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/maven-4.0/maven-4.0.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/schemaDirWithNestedFolders/root/calculator.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/schemaDirWithNestedFolders/root/calculator.wsdl -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/schemaDirWithNestedFolders/root/nested1/nested2/artifactory-1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/schemaDirWithNestedFolders/root/nested1/nested2/artifactory-1.xsd -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/xjc.xjb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/main/schemas/xjc/xjc.xjb.xml -------------------------------------------------------------------------------- /src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/test/schemas/xjc/maven-4.0.0/maven-4.0.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/intTest/resources/com/github/edeandrea/xjcplugin/plugin/XjcPluginIntegrationTests/src/test/schemas/xjc/maven-4.0.0/maven-4.0.0.xsd -------------------------------------------------------------------------------- /src/intTest/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | -------------------------------------------------------------------------------- /src/main/kotlin/com/github/edeandrea/xjcplugin/domain/XjcDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/main/kotlin/com/github/edeandrea/xjcplugin/domain/XjcDomain.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/main/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/edeandrea/xjcplugin/type/Xjc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/main/kotlin/com/github/edeandrea/xjcplugin/type/Xjc.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/edeandrea/xjcplugin/AbstractUnitTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/test/kotlin/com/github/edeandrea/xjcplugin/AbstractUnitTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPluginUnitTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/test/kotlin/com/github/edeandrea/xjcplugin/plugin/XjcPluginUnitTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/edeandrea/xjcplugin/type/XjcTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edeandrea/xjc-generation-gradle-plugin/HEAD/src/test/kotlin/com/github/edeandrea/xjcplugin/type/XjcTest.kt -------------------------------------------------------------------------------- /src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | --------------------------------------------------------------------------------