├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── pom.xml ├── samples ├── Drupal10 │ ├── DevPortal │ │ ├── apicatalog-config.json │ │ ├── pom.xml │ │ ├── shared-pom.xml │ │ └── specs │ │ │ ├── Petstore.yaml │ │ │ └── pets.jpeg │ ├── README.md │ └── media │ │ ├── screenshot1.png │ │ └── screenshot2.png ├── Drupal7 │ ├── DevPortal │ │ ├── pom.xml │ │ ├── shared-pom.xml │ │ └── specs │ │ │ └── mock.yaml │ ├── README.md │ └── images │ │ ├── Fake-Company.png │ │ ├── Field-Company.png │ │ ├── Service-Edit.png │ │ ├── Service-Endpoints-Advanced.png │ │ ├── Service-Endpoints-User.png │ │ ├── Service-Endpoints.png │ │ └── Service-Listing.png └── README.md └── src └── main ├── java └── com │ └── apigee │ └── smartdocs │ └── config │ ├── mavenplugin │ ├── APIDocsMojo.java │ └── PortalAbstractMojo.java │ ├── rest │ ├── FakeHostnameVerifier.java │ ├── PortalRestUtil.java │ └── XTrustProvider.java │ └── utils │ ├── PortalField.java │ ├── PrintUtil.java │ └── ServerProfile.java └── resources └── log4j2.properties /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | target/ 3 | bin/ 4 | .settings 5 | .classpath 6 | .project 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /samples/Drupal10/DevPortal/apicatalog-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/DevPortal/apicatalog-config.json -------------------------------------------------------------------------------- /samples/Drupal10/DevPortal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/DevPortal/pom.xml -------------------------------------------------------------------------------- /samples/Drupal10/DevPortal/shared-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/DevPortal/shared-pom.xml -------------------------------------------------------------------------------- /samples/Drupal10/DevPortal/specs/Petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/DevPortal/specs/Petstore.yaml -------------------------------------------------------------------------------- /samples/Drupal10/DevPortal/specs/pets.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/DevPortal/specs/pets.jpeg -------------------------------------------------------------------------------- /samples/Drupal10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/README.md -------------------------------------------------------------------------------- /samples/Drupal10/media/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/media/screenshot1.png -------------------------------------------------------------------------------- /samples/Drupal10/media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal10/media/screenshot2.png -------------------------------------------------------------------------------- /samples/Drupal7/DevPortal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/DevPortal/pom.xml -------------------------------------------------------------------------------- /samples/Drupal7/DevPortal/shared-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/DevPortal/shared-pom.xml -------------------------------------------------------------------------------- /samples/Drupal7/DevPortal/specs/mock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/DevPortal/specs/mock.yaml -------------------------------------------------------------------------------- /samples/Drupal7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/README.md -------------------------------------------------------------------------------- /samples/Drupal7/images/Fake-Company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Fake-Company.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Field-Company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Field-Company.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Service-Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Service-Edit.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Service-Endpoints-Advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Service-Endpoints-Advanced.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Service-Endpoints-User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Service-Endpoints-User.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Service-Endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Service-Endpoints.png -------------------------------------------------------------------------------- /samples/Drupal7/images/Service-Listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/Drupal7/images/Service-Listing.png -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/samples/README.md -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/mavenplugin/APIDocsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/mavenplugin/APIDocsMojo.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/mavenplugin/PortalAbstractMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/mavenplugin/PortalAbstractMojo.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/rest/FakeHostnameVerifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/rest/FakeHostnameVerifier.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/rest/PortalRestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/rest/PortalRestUtil.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/rest/XTrustProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/rest/XTrustProvider.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/utils/PortalField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/utils/PortalField.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/utils/PrintUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/utils/PrintUtil.java -------------------------------------------------------------------------------- /src/main/java/com/apigee/smartdocs/config/utils/ServerProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/java/com/apigee/smartdocs/config/utils/ServerProfile.java -------------------------------------------------------------------------------- /src/main/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/apigee-smartdocs-maven-plugin/HEAD/src/main/resources/log4j2.properties --------------------------------------------------------------------------------