bobbylight / AutoComplete

A code completion library for Swing text components, with special support for RSyntaxTextArea.
BSD 3-Clause "New" or "Revised" License
166 stars 55 forks source link

Autocomplete 3.1.0 incompatible with RSyntatTextArea 3.1.1 #71

Closed olegvasylenko closed 4 years ago

olegvasylenko commented 4 years ago

The dependency of Autocomplete 3.1.0 and RSyntatTextArea 3.1.1 are converged. Can you provide a release of autocomplete to be dependent on RSyntatTextArea 3.1.1?

olegvasylenko commented 4 years ago

fix convergence with module exclusion

<dependency>
        <groupId>com.fifesoft</groupId>
        <artifactId>rsyntaxtextarea</artifactId>
        <version>3.1.1</version>
    </dependency>
<dependency>
        <groupId>com.fifesoft</groupId>
        <artifactId>autocomplete</artifactId>
        <version>3.1.0</version>
        <exclusions>
            <exclusion>
                <groupId>com.fifesoft</groupId>
                <artifactId>rsyntaxtextarea</artifactId>
            </exclusion>
        </exclusions>
    </dependency>