GithubHelp home page GithubHelp logo

confluence-publisher / confluence-publisher Goto Github PK

View Code? Open in Web Editor NEW
204.0 15.0 88.0 2.67 MB

Maven plugin and Docker image to convert AsciiDoc and publish it to Confluence

License: Apache License 2.0

Java 96.96% HTML 0.03% Ruby 1.37% Shell 0.46% Dockerfile 0.18% Slim 1.01%
maven asciidoc confluence docker

confluence-publisher's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

confluence-publisher's Issues

Publish documentation to Confluence

Official Confluence Publisher documentation should be published in Confluence, not only as AsciiDoc in GitHub. Publishing on Atlassian Cloud seems to be the simplest solution.

UTF-8 not supported

In generated html snippets (and afterwise in Confluence) all special characters are broken.

Publish documentation via Docker image

Provide a Docker image with environment variables for all required and optional configuration parameters and allow publishing by executing Docker image.

This allows publishing documentation as part of a build pipeline without any dependency to the Confluence Publisher and Maven in the documentation project itself.

Support configuration of encoding

The Confluence Publisher currently uses the platform default encoding when reading AsciiDoc pages. This might lead to encoding issues (see #49). The encoding to be used by Confluence Publisher should be configurable, with UTF-8 as default.

Publishing to confluence fails when included file has regex content

hello,
i have a problem with a file include. I want to include a json file which contains a regex:

"instanceVersionDate": {  
  "type": "string",  
  "pattern": "[0-9][0-9]\.[0-9][0-9]\.[0-9]{4}$",  
  "optional": false
}

now the publishing to confluence fails with the following exception:
Caused by: org.apache.maven.plugin.MojoExecutionException: Publishing to Confluence failed at org.sahli.asciidoc.confluence.publisher.maven.plugin.AsciidocConfluencePublisherMojo.execute(AsciidocConfluencePublisherMojo.java:75) at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207) ... 20 more Caused by: java.lang.RuntimeException: Could not convert asciidoc pages at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.convert(AsciidocConfluenceConverter.java:85) at org.sahli.asciidoc.confluence.publisher.maven.plugin.AsciidocConfluencePublisherMojo.execute(AsciidocConfluencePublisherMojo.java:67) ... 22 more Caused by: java.lang.IllegalArgumentException: Illegal group reference at java.util.regex.Matcher.appendReplacement(Matcher.java:857) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.replaceAll(AsciidocConfluencePage.java:146) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.lambda$unescapeCdataHtmlContent$1(AsciidocConfluencePage.java:127) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.lambda$postProcessContent$4(AsciidocConfluencePage.java:156) at java.util.stream.ReduceOps$1ReducingSink.accept(ReduceOps.java:80) at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948) at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.util.stream.ReferencePipeline.reduce(ReferencePipeline.java:484) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.postProcessContent(AsciidocConfluencePage.java:156) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.convertedContent(AsciidocConfluencePage.java:117) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.newAsciidocConfluencePage(AsciidocConfluencePage.java:101) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.lambda$buildPageTree$0(AsciidocConfluenceConverter.java:97) at java.util.ArrayList.forEach(ArrayList.java:1249) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.buildPageTree(AsciidocConfluenceConverter.java:92) at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.convert(AsciidocConfluenceConverter.java:76) ... 23 more

Improved error logging

In case of an exception (e.g. while publishing content to Confluence), no proper error logging is performed (instead, message is printed to standard out). Use Maven logger to log error, re-throw exception for support of Maven debug flag.

Change ancestorId to be mandatory

In case no ancestorId is defined in Maven plugin configuration, publishing any documentation results to all existing Confluence pages not contained in documentation to be deleted.

Allowing to publish documentation without ancestorId seems to be too risky and not adding enough value. As a consequence, the ancestorId should be changed to mandatory.

Also document how to allow the Confluence Publisher to manage all pages of a space (i.e. how to get to the "space ancestor id").

Optimize checksum verification of attachments

As for now attachment are downloaded in order to compare their checksum (to find out if the attachment must be updated or not). It would be better to store the checksum as a comment (or property if possible) on the attachment itself. This would save a lot of bandwidth during the publication process.

Publishing does not work

Environment: Windows - Git Bash - Graphiz 2.38 -Confluence: 5.5.7

My configuration file (pom.xml) (I only added the required parameters for the confluence page

<plugin>
						  <groupId>org.sahli.asciidoc.confluence.publisher</groupId>
						  <artifactId>asciidoc-confluence-publisher-maven-plugin</artifactId>
						  <version>1.8</version>
						  <configuration>
							<asciidocRootFolder>test</asciidocRootFolder>
							<rootConfluenceUrl>https://xxxxxx</rootConfluenceUrl>
							<spaceKey>ASCI</spaceKey>
							<ancestorId>8388631</ancestorId>
							<username>xxx</username> <!-- or read from property -->
							<password>xxxx</password> <!-- or read from property -->
						  </configuration>
						</plugin>

I cloned the latest version from git and ran mvn clean package to publish the .adoc files

Looked at the attached log
log.txt

The adoc file is a simple test file without any special forms

Subsequent publishing fails with "No content property found with key: content-hash"

In case updating an already uploaded page fails (e.g. due to invalid markup), subsequent uploads lead to an exception stating "No content property found with key: content-hash", as the content hash property is deleted before uploading the page content, and again set only after the upload succeeded.

As a consequence, the existing page needs to be deleted in Confluence, and afterwards uploaded again.

Simplify integration into other build tools (Gradle, SBT)

Currently, the Maven Plugin component contains not only the specifics to Maven, but also the logic for traversing the documentation root folder, building up the metadata and configuring the Confluence Publisher client. This renders it almost impossible to integrate the Confluence Publisher into other build tools, e.g. Gradle or SBT.

Page title prefix/suffix

When working with feature branches it would be helpful to be able to define page title prefix or suffix to avoid page title collisions (page titles must be unique).

XML Listings are broken

When using XML in listings, XML tags are not displayed properly:

[source,xml]
----
<version>1.0.0</version>
----

is displayed as

&lt;version&gt;1.0.0&lt;/version&gt;

Support inline images

http://asciidoctor.org/docs/asciidoc-syntax-quick-reference/#images

block images can be used successfully with image::
but it seems inline images (using image:) are not supported

[ERROR] Failed to execute goal org.sahli.asciidoc.confluence.publisher:asciidoc-confluence-publisher-maven-plugin:0.1.0:publish (default-cli) on project XXXX: Publishing to Confluence failed: 400 Bad Request PUT https://confluence.XXXX.net/rest/api/content/13271515 {"statusCode":400,"data":{"authorized":false,"valid":true,"errors":[],"successful":false},"message":"Error parsing xhtml: Unexpected close tag </span>; expected </img>.\n at [row,col {unknown-source}]: [20,329]"} -> [Help 1]

Two broken tests in AsciidocConfluencePageTest

On master (on Windows cmd and cygwin):

$ mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Asciidoc Confluence Publisher Converter 0.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ asciidoc-confluence-publisher-converter ---
[INFO] Deleting G:\code\projects\confluence-publisher\asciidoc-confluence-publisher-converter\target
[INFO]
[INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (prepare-agent) @ asciidoc-confluence-publisher-converter ---
[INFO] argLine set to -javaagent:C:\\Users\\Megaport\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.5.201505241946\\org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=G:\\code\\projects\\confluence-publisher\\asciidoc-confluence
coco.exec
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ asciidoc-confluence-publisher-converter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 10 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ asciidoc-confluence-publisher-converter ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to G:\code\projects\confluence-publisher\asciidoc-confluence-publisher-converter\target\classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ asciidoc-confluence-publisher-converter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 8 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ asciidoc-confluence-publisher-converter ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to G:\code\projects\confluence-publisher\asciidoc-confluence-publisher-converter\target\test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ asciidoc-confluence-publisher-converter ---

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest
/usr/bin/stty: Standardeingabe: Inappropriate ioctl for device
Tests run: 48, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 63.613 sec <<< FAILURE! - in org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest
renderConfluencePage_asciiDocWithEmbeddedPlantUmlDiagram_returnsConfluencePageWithLinkToGeneratedPlantUmlImage(org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest)  Time elapsed: 0.9 sec  <<< FAILURE!
java.lang.AssertionError:

Expected: a string containing "<ac:image ac:height=\"175\" ac:width=\"57\"><ri:attachment ri:filename=\"embedded-diagram.png\"></ri:attachment></ac:image>"
     but: was "<ac:image ac:height="225" ac:width="274"><ri:attachment ri:filename="embedded-diagram.png"></ri:attachment></ac:image>"
        at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest.renderConfluencePage_asciiDocWithEmbeddedPlantUmlDiagram_returnsConfluencePageWithLinkToGeneratedPlantUmlImage(AsciidocConfluencePageTest.java:712)

renderConfluencePage_asciiDocWithIncludedPlantUmlFile_returnsConfluencePageWithLinkToGeneratedPlantUmlImage(org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest)  Time elapsed: 0.084 sec  <<< FAILURE!
java.lang.AssertionError:

Expected: a string containing "<ac:image ac:height=\"175\" ac:width=\"57\"><ri:attachment ri:filename=\"included-diagram.png\"></ri:attachment></ac:image>"
     but: was "<ac:image ac:height="225" ac:width="274"><ri:attachment ri:filename="included-diagram.png"></ri:attachment></ac:image>"
        at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePageTest.renderConfluencePage_asciiDocWithIncludedPlantUmlFile_returnsConfluencePageWithLinkToGeneratedPlantUmlImage(AsciidocConfluencePageTest.java:727)


Results :

Failed tests:
  AsciidocConfluencePageTest.renderConfluencePage_asciiDocWithEmbeddedPlantUmlDiagram_returnsConfluencePageWithLinkToGeneratedPlantUmlImage:712
Expected: a string containing "<ac:image ac:height=\"175\" ac:width=\"57\"><ri:attachment ri:filename=\"embedded-diagram.png\"></ri:attachment></ac:image>"
     but: was "<ac:image ac:height="225" ac:width="274"><ri:attachment ri:filename="embedded-diagram.png"></ri:attachment></ac:image>"
  AsciidocConfluencePageTest.renderConfluencePage_asciiDocWithIncludedPlantUmlFile_returnsConfluencePageWithLinkToGeneratedPlantUmlImage:727
Expected: a string containing "<ac:image ac:height=\"175\" ac:width=\"57\"><ri:attachment ri:filename=\"included-diagram.png\"></ri:attachment></ac:image>"
     but: was "<ac:image ac:height="225" ac:width="274"><ri:attachment ri:filename="included-diagram.png"></ri:attachment></ac:image>"

Tests run: 48, Failures: 2, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:06 min
[INFO] Finished at: 2017-06-07T19:03:05+02:00
[INFO] Final Memory: 24M/249M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project asciidoc-confluence-publisher-converter: There are test failures.
[ERROR]
[ERROR] Please refer to G:\code\projects\confluence-publisher\asciidoc-confluence-publisher-converter\target\surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

Provide a stable tools API for build tools

The current API is rather low-level and forces build tools to instantiate and link all the required components (ConfluenceRestClient, ConfluencePublisher and AsciidocConfluenceConverter).

Ideally tools should only provide a AsciidocPagesStructureProvider and a configuration object.

Configurable publishing strategies

Currently, when publishing documentation under the configured ancestor id, all existing pages under the child tree of the ancestor id get removed, if not existing in the published set of pages anymore.

Alternative publishing strategies would allow for other scenarios, e.g.

  • replace ancestor title and content (instead of adding root page as child to ancestor page - useful for documentation with one single root page in order to avoid having ancestor page as additional intermediary page)
  • only add root page(s) to ancestor page (instead of deleting non-published pages under ancestor page - useful for publishing documentation sub-trees from different documentation projects under the same ancestor id)
  • ...

Maybe more than one strategy might be needed, e.g. for separating the aspect of how to deal with the ancestor page itself (replacing the content vs. appending to the content) from the aspect of how to deal with non-existing child pages (removing vs. keeping).

Introduce contributions branch as "staging area" for pull request from forks

In order to ensure all integration tests are successful before merge pull requests from forks into the master (as pull request builds for forks cannot execute integration tests due to secret variables being used), a contributions branch should be used as a "staging area":

  • pull request is reviewed
  • pull request is merged into contributions branch
  • after successful build, changes on the contributions branch are automatically brought into the master
  • after every master build, changes from the master are automatically brought into the contributions branch in order to keep the contributions branch up-to-date

Externalize confluence credentials

As for now the credentials are "hardcoded" in the pom.xml. One should find a way to externalize those to avoid them to be committed in the VCS. This can already be done by using the settings.xml of maven.

Fix Build on Travis Environment

Currently, the master build fails with:

The command "if ( [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] ) || [ -n "$TRAVIS_TAG" ]; then ./mvnw -s .settings.xml jar:jar source:jar javadoc:jar gpg:sign nexus-staging:deploy -Possrh -nsu; fi" exited with 1.

[ERROR] Failed to execute goal org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7:deploy (default-cli) on project asciidoc-confluence-publisher-doc: Failed to update metadata org.sahli.asciidoc.confluence.publisher/maven-metadata.xml: null: RepositoryException: NullPointerException -> [Help 1]

Builds for feature branches and pull requests are not affected.

Implement page ordering

As for now the pages are ordered as per page creation order. It would be good to have a way to define the order of the pages.

Note: this could be difficult as the REST API of Confluence does not provide a way to reorder pages.

Remove 1.0.0-SNAPSHOT from Sonatype snapshot repository

The snapshot version 1.0.0-SNAPSHOT is a left-over from the "old" release approach. New snapshots are always uploaded as 0.0.0-SNAPSHOT, indicating that the version in the POM is only relevant during release builds (and is automatically replaced by the corresponding tag).

The higher version 1.0.0-SNAPSHOT might imply that it represents the more up-to-date software version, which is in fact not the case. Therefore, it should be removed from the snapshot repository.

Generated changelog page

During publication one could find out which pages where updated and automatically create a changelog page listing all the changes and linking them to diff view of confluence

Error parsing xhtml: Unexpected close tag

Some existing HTML backend templates (e.g. inline images) produce HTML, while Confluence is expecting XHTML. Using the XHTML backend would solve non-closing tags issues.

IllegalArgumentException: named capturing group has 0 length name

Hi,

I get this error, can you fix that?

Regards Stefan

[ERROR] Failed to execute goal org.sahli.asciidoc.confluence.publisher:asciidoc-confluence-publisher-maven-plugin:0.2.0:publish (default-cli) on project plmapp-unity-plh-adapter: Publishing to Confluence failed: Could not convert asciidoc pages: named capturing group has 0 length name -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.sahli.asciidoc.confluence.publisher:asciidoc-confluence-publisher-maven-plugin:0.2.0:publish (default-cli) on project plmapp-unity-plh-adapter: Publishing to Confluence failed
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
at org.codehaus.classworlds.Launcher.main(Launcher.java:47)
Caused by: org.apache.maven.plugin.MojoExecutionException: Publishing to Confluence failed
at org.sahli.asciidoc.confluence.publisher.maven.plugin.AsciidocConfluencePublisherMojo.execute(AsciidocConfluencePublisherMojo.java:75)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
... 21 more
Caused by: java.lang.RuntimeException: Could not convert asciidoc pages
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.convert(AsciidocConfluenceConverter.java:85)
at org.sahli.asciidoc.confluence.publisher.maven.plugin.AsciidocConfluencePublisherMojo.execute(AsciidocConfluencePublisherMojo.java:67)
... 23 more
Caused by: java.lang.IllegalArgumentException: named capturing group has 0 length name
at java.util.regex.Matcher.appendReplacement(Matcher.java:838)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.replaceAll(AsciidocConfluencePage.java:146)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.lambda$unescapeCdataHtmlContent$1(AsciidocConfluencePage.java:127)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.lambda$postProcessContent$4(AsciidocConfluencePage.java:156)
at java.util.stream.ReduceOps$1ReducingSink.accept(ReduceOps.java:80)
at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.reduce(ReferencePipeline.java:484)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.postProcessContent(AsciidocConfluencePage.java:156)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.convertedContent(AsciidocConfluencePage.java:117)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluencePage.newAsciidocConfluencePage(AsciidocConfluencePage.java:101)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.lambda$buildPageTree$0(AsciidocConfluenceConverter.java:97)
at java.util.ArrayList.forEach(ArrayList.java:1257)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.buildPageTree(AsciidocConfluenceConverter.java:92)
at org.sahli.asciidoc.confluence.publisher.converter.AsciidocConfluenceConverter.convert(AsciidocConfluenceConverter.java:76)
... 24 more

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.