Skip to content

[WIP] Add ANTLR4 support #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 42 commits into from
Jul 1, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
ae9ef44
first antlr4 dev version
matthiasbalke Dec 27, 2018
66f486a
resolve antlr4 formatter lib at runtime
matthiasbalke Dec 27, 2018
40daf9a
prepare for PR (#326)
matthiasbalke Dec 28, 2018
6663bba
add option to configure Antlr4Formatter version used
matthiasbalke Dec 28, 2018
deb3a76
rename step name
matthiasbalke Dec 28, 2018
84b2cb5
add docs for gradle extension
matthiasbalke Dec 28, 2018
55364f2
remove mavenLocal development repository
matthiasbalke Dec 28, 2018
d821563
Merge remote-tracking branch 'upstream/master' into antlr4
matthiasbalke Dec 28, 2018
f436c77
add antlr4 maven support
matthiasbalke Dec 28, 2018
6dc960b
fix antlr4 includes/target docs
matthiasbalke Dec 28, 2018
77a82c9
fix antlr4 default license header separator
matthiasbalke Dec 28, 2018
be4175d
Merge remote-tracking branch 'upstream/master' into antlr4
matthiasbalke Dec 28, 2018
38e2baa
add Antlr4Formatter to maven-plugin Readme
matthiasbalke Dec 28, 2018
257b1bc
Merge remote-tracking branch 'upstream/master' into issue-326-antlr4
matthiasbalke Jan 12, 2019
8b7f53e
Merge branch 'master' into antlr4
matthiasbalke Jan 22, 2019
2167c15
Merge remote-tracking branch 'upstream/master' into issue-326-antlr4
matthiasbalke Jun 5, 2019
b351889
Merge remote-tracking branch 'upstream/master' into antlr4
matthiasbalke Jun 12, 2019
341a8af
update Antlr4Formatter Version to upcoming release 1.2.1
matthiasbalke Jun 12, 2019
9343ff4
Merge remote-tracking branch 'origin/issue-326-antlr4' into antlr4
matthiasbalke Jun 12, 2019
642cda9
Revert "update Antlr4Formatter Version to upcoming release 1.2.1"
matthiasbalke Jun 12, 2019
cebef42
Merge remote-tracking branch 'upstream/master' into issue-326-antlr4
matthiasbalke Feb 1, 2020
0e9d4aa
Merge remote-tracking branch 'upstream/master' into antlr4
matthiasbalke Mar 10, 2020
cbdc360
Merge remote-tracking branch 'origin/issue-326-antlr4' into antlr4
matthiasbalke Mar 10, 2020
e5818be
removed duplicated changelog entries
matthiasbalke Mar 10, 2020
3117cb4
fix spelling
matthiasbalke Mar 10, 2020
2ed1fad
Merge branch 'master' into issue-326-antlr4
matthiasbalke Mar 11, 2020
7c9790f
Merge remote-tracking branch 'upstream/master' into antlr4
matthiasbalke Mar 25, 2020
81c6f1c
update Antlr4Formatter lib to fixed version 1.2.1
matthiasbalke Mar 25, 2020
cacc0ac
Merge branch 'main' into antlr4
nedtwigg Jun 24, 2020
d5bb7a6
Update license headers.
nedtwigg Jun 24, 2020
83e1a02
Add the `antlr4` extension to SpotlessExtensionBase.
nedtwigg Jun 24, 2020
8b261b4
Move the changelog entries to their correct location at `[Unreleased]`.
nedtwigg Jun 25, 2020
b4530a1
Fix the maven and gradle integration tests.
nedtwigg Jun 25, 2020
ecf1861
Remove the unnecessary gradle-internals test dedicated to Antlr4.
nedtwigg Jun 25, 2020
f111f2e
Fix Antlr4Extension.
nedtwigg Jun 25, 2020
3887435
fix expected format
Jul 1, 2020
289af25
fix expected format
Jul 1, 2020
62e52f6
Merge remote-tracking branch 'upstream/main' into issue-rebased
Jul 1, 2020
d946b3f
use a more generic default pattern
Jul 1, 2020
2bd12d7
Move Antlr4Extension from the deprecated `GradleProvisioner` to the n…
nedtwigg Jul 1, 2020
837df92
Revert all README changes - I will put them back later.
nedtwigg Jul 1, 2020
60b9805
Minor refactor of the antlr4 defaults.
nedtwigg Jul 1, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the maven and gradle integration tests.
  • Loading branch information
nedtwigg committed Jun 25, 2020
commit b4530a12609d7e22d65d704b7bff804c6e50e9b0
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import org.junit.Test;

public class Antlr4ExtensionTest extends GradleIntegrationTest {
public class Antlr4ExtensionTest extends GradleIntegrationHarness {

@Test
public void applyUsingDefaultVersion() throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

import org.junit.Test;

import com.diffplug.spotless.maven.MavenIntegrationTest;
import com.diffplug.spotless.maven.MavenIntegrationHarness;

public class Antlr4FormatterTest extends MavenIntegrationTest {
public class Antlr4FormatterTest extends MavenIntegrationHarness {

@Test
public void applyUsingCustomVersion() throws Exception {
Expand Down