Skip to content

Commit 4be398f

Browse files
authored
Merge pull request #53 from markdown-asciidoc/cleanup
Cleanup project and ported Kotlin bugfix to Java version.
2 parents cd7d338 + 9f6a569 commit 4be398f

File tree

18 files changed

+202
-1290
lines changed

18 files changed

+202
-1290
lines changed

.github/workflows/pr.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-latest
10-
9+
strategy:
10+
matrix:
11+
java-version: [ 17, 21 ]
12+
runs-on: [ ubuntu-latest, macos-latest, windows-latest ]
13+
name: Jdk ${{ matrix.java-version }}, os ${{ matrix.runs-on }}
14+
runs-on: ${{ matrix.runs-on }}
1115
steps:
1216
- uses: actions/checkout@v4
13-
14-
- name: Set up JDK 17
17+
- name: Set up JDK ${{ matrix.java-version }}
1518
uses: actions/setup-java@v4
1619
with:
17-
java-version: '17'
20+
java-version: ${{ matrix.java-version }}
1821
distribution: 'adopt'
1922
cache: maven
2023
- name: Build with Maven

.travis.yml

-4
This file was deleted.

README.adoc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Markdown to AsciiDoc converter
2-
2+
:library-version: 2.0.0
33

44
image:https://github.com/bodiam/markdown-to-asciidoc/actions/workflows/maven.yml/badge.svg[Build Status]
55
image:https://github.com/bodiam/markdown-to-asciidoc/actions/workflows/maven-publish.yml/badge.svg[Publish Status]
@@ -34,7 +34,7 @@ Also, currently known *not* supported items are:
3434

3535
Add the following dependency to your project:
3636

37-
`nl.jworks.markdown_to_asciidoc:markdown_to_asciidoc:1.0`
37+
`nl.jworks.markdown_to_asciidoc:markdown_to_asciidoc:{library-version}`
3838

3939
To use the library, call the following:
4040

@@ -44,8 +44,7 @@ The Converter converts all Markdown input to AsciiDoc.
4444

4545
== Uses
4646

47-
Currently the conversion library is used in the https://plugins.jetbrains.com/plugin/7391[IntelliJ AsciiDoc Plugin] to seamlessly convert between
48-
from Markdown to AsciiDoc.
47+
Currently, the conversion library is used in the https://plugins.jetbrains.com/plugin/7391[IntelliJ AsciiDoc Plugin] to seamlessly convert Markdown to AsciiDoc.
4948

5049
If you know of any projects using the library, please let me know on Twitter: http://www.twitter.com/epragt[@epragt].
5150

build.gradle

-132
This file was deleted.

gradle.properties

-2
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-53.4 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

-6
This file was deleted.

gradlew

-172
This file was deleted.

0 commit comments

Comments
 (0)