Skip to content
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

Xalan from Stanford kills Java cups #56

Open
shyamupa opened this issue Apr 14, 2016 · 4 comments
Open

Xalan from Stanford kills Java cups #56

shyamupa opened this issue Apr 14, 2016 · 4 comments
Labels

Comments

@shyamupa
Copy link
Member

When I import core-utils and lbjava in the same project, java cups breaks down and cannot work.
The reason behind this is core-utils brings stanford corenlp which in turn brings xalan jar.
Xalan and java cups do not go well.

@christos-c
Copy link
Member

@mssammon @danyaljj @YimingJiang FYI (I won't be able to tackle this right now)

@christos-c christos-c added the bug label Apr 14, 2016
@mssammon
Copy link
Contributor

could we make stanford an optional dependency?

@christos-c
Copy link
Member

For some projects that actually require the dep/const parser that's not really an option.

@danyaljj
Copy link
Member

danyaljj commented Apr 4, 2017

screen shot 2017-04-04 at 10 54 30 am

For me excluding stanford from the pipeline at the time of generating the lbjava files did the trick:

        <dependency>
            <groupId>edu.illinois.cs.cogcomp</groupId>
            <artifactId>illinois-nlp-pipeline</artifactId>
            <version>${cogcomp-nlp-version}</version>
            <exclusions>
                <exclusion>
                    <groupId>edu.stanford.nlp</groupId>
                    <artifactId>stanford-corenlp</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants