Skip to content

Commit

Permalink
Merge pull request #53 from markdown-asciidoc/cleanup
Browse files Browse the repository at this point in the history
Cleanup project and ported Kotlin bugfix to Java version.
  • Loading branch information
bodiam committed Feb 19, 2024
2 parents cd7d338 + 9f6a569 commit 4be398f
Show file tree
Hide file tree
Showing 18 changed files with 202 additions and 1,290 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,18 @@ on:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
java-version: [ 17, 21 ]
runs-on: [ ubuntu-latest, macos-latest, windows-latest ]
name: Jdk ${{ matrix.java-version }}, os ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
cache: maven
- name: Build with Maven
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

7 changes: 3 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Markdown to AsciiDoc converter

:library-version: 2.0.0

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

Add the following dependency to your project:

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

To use the library, call the following:

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

== Uses

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

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

Expand Down
132 changes: 0 additions & 132 deletions build.gradle

This file was deleted.

2 changes: 0 additions & 2 deletions gradle.properties

This file was deleted.

Binary file removed gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 0 additions & 6 deletions gradle/wrapper/gradle-wrapper.properties

This file was deleted.

172 changes: 0 additions & 172 deletions gradlew

This file was deleted.

0 comments on commit 4be398f

Please sign in to comment.