In EGit history view, right click on a commit. see https://twitter.com/j2r2b/status/1067000589991796738
In this Gist the result of the jstack execution.
| import java.io.StringWriter; | |
| import org.eclipse.mylyn.wikitext.core.parser.MarkupParser; | |
| import org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder; | |
| import org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguage; | |
| import org.eclipse.mylyn.wikitext.markdown.core.MarkdownLanguage; | |
| public class MarkdownHelloWorld { | |
| public static void main(String[] args) { | |
| StringBuilder sb = new StringBuilder(); |
| import java.io.File; | |
| import java.io.FileFilter; | |
| import java.io.FilenameFilter; | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; | |
| import com.google.common.base.Charsets; |
| import java.io.File; | |
| import java.io.FileFilter; | |
| import java.io.FilenameFilter; | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; | |
| import com.google.common.base.Charsets; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>example</groupId> | |
| <artifactId>sample-pom</artifactId> | |
| <version>0.1</version> | |
| <packaging>pom</packaging> |
| echo ".DS_Store" >> ~/Git/.gitignore_global | |
| echo "._.DS_Store" >> ~/Git/.gitignore_global | |
| echo "**/.DS_Store" >> ~/Git/.gitignore_global | |
| echo "**/._.DS_Store" >> ~/Git/.gitignore_global | |
| git config --global core.excludesfile ~/Git/.gitignore_global |
| # current version on asciidoctorj-1.6.0 branch https://github.com/asciidoctor/asciidoctorj/blob/asciidoctorj-1.6.0/.travis.yml | |
| os: linux | |
| dist: trusty | |
| language: java | |
| matrix: | |
| include: | |
| - jdk: oraclejdk9 | |
| dist: trusty | |
| - jdk: oraclejdk8 | |
| - jdk: oraclejdk7 |
| package rename; | |
| import java.nio.file.Path; | |
| import java.util.List; | |
| import java.util.Map; | |
| public class Input { | |
| final Path root; | |
| final Map<String, String> projectNames; | |
| final String oldRootPackageName; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <issues> | |
| <issue | |
| name="Lines should not be longer than 80 characters" | |
| severity="Warning" | |
| message="Line 2 is too long (length: 105)" | |
| category="STYLE" | |
| summary="The line length should be less than or equal to 80." | |
| explanation="In a text file (ending with `.txt`) the line should not be longer than 80 characters ..." | |
| location="/_absolute_path_to_/some-file.txt" |
In EGit history view, right click on a commit. see https://twitter.com/j2r2b/status/1067000589991796738
In this Gist the result of the jstack execution.
| //usr/bin/env jbang "$0" "$@" ; exit $? | |
| //DEPS org.openapitools.empoa:empoa-swagger-core:1.1.0 | |
| //DEPS org.openapitools.empoa:empoa-javapoet:1.1.0 | |
| //DEPS io.swagger.parser.v3:swagger-parser:2.0.20 | |
| //DEPS org.slf4j:slf4j-simple:1.7.30 | |
| import org.eclipse.microprofile.openapi.models.OpenAPI; | |
| import org.openapitools.empoa.javapoet.JavaFileConverter; | |
| import org.openapitools.empoa.swagger.core.internal.SwAdapter; |