Including Maven Dependencies on XText Eclipse Project [message #1851925] |
Thu, 21 April 2022 14:05  |
Eclipse User |
|
|
|
Hi!
I am struggling to figure out how to include a Maven dependencies on a standard XText Eclipse project with Maven build support (hello world produced from the wizard).
Any hints?
Specifically I want to include Symja (algebra engine) from https://github.com/axkr/symja_android_library. The relevant POM files are:
<dependencies>
<dependency>
<groupId>org.matheclipse</groupId>
<artifactId>matheclipse-core</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.matheclipse</groupId>
<artifactId>matheclipse-gpl</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0-alpha6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.0-alpha6</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.17.2</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
|
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.03958 seconds