Reputation: 723
I am trying to import the parser from Eclipse PDT in a project using Maven, however, I cannot find how to do it.
I added the following in pom.xml
:
<dependency>
<groupId>org.eclipse.php</groupId>
<artifactId>org.eclipse.php.core</artifactId>
<version>5.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.eclipse.php</groupId>
<artifactId>org.eclipse.php.core.parser</artifactId>
<version>5.2.0-SNAPSHOT</version>
</dependency>
However, these packages are not located on https://repo.maven.apache.org/maven2, like for example Eclipse JDT (org.eclipse.jdt)
Is there a maven repository from where these packages (org.eclipse.php.core, org.eclipse.php.core.parser) can be downloaded using Maven, together with all their dependencies?
Upvotes: 0
Views: 256
Reputation: 34175
Since newer versions are not available in public Maven repositories, the following two ways to get the Eclipse PDT PHP parser JAR via Maven remain:
http://download.eclipse.org/tools/pdt/updates/5.2-nightly/
plugins/org.eclipse.php.core.parser_{version}.jar
JAR from an Eclipse PDT installation and include the local JAR in your pom.xml
fileUpvotes: 1