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

Move graphlib from eclipse classpath to maven. #12

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,5 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="lib/graphlib.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
File renamed without changes.
1 change: 1 addition & 0 deletions lib-mvn/edg/graphlib/graphlib/1.0.0/graphlib-1.0.0.jar.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ac589f325e9e97b6e8ff18ba4a06a634
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
206858130ef77b58315b50c6d14b3a200ffcd060
8 changes: 8 additions & 0 deletions lib-mvn/edg/graphlib/graphlib/1.0.0/graphlib-1.0.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>edg.graphlib</groupId>
<artifactId>graphlib</artifactId>
<version>1.0.0</version>
</project>
1 change: 1 addition & 0 deletions lib-mvn/edg/graphlib/graphlib/1.0.0/graphlib-1.0.0.pom.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
47addf9e1e28608ef03d2c21abee1cae
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ea0ebc8f76caf073eb25299dd92b4c9945f08740
12 changes: 12 additions & 0 deletions lib-mvn/edg/graphlib/graphlib/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>edg.graphlib</groupId>
<artifactId>graphlib</artifactId>
<versioning>
<release>1.0.0</release>
<versions>
<version>1.0.0</version>
</versions>
<lastUpdated>20200109110038</lastUpdated>
</versioning>
</metadata>
1 change: 1 addition & 0 deletions lib-mvn/edg/graphlib/graphlib/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
92cec635e1737e9bf1f94f6a831fcd73
1 change: 1 addition & 0 deletions lib-mvn/edg/graphlib/graphlib/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e7a7863fdb362502f132c223b42e4206a697f3b9
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,19 @@
</plugins>
</build>

<repositories>
<repository>
<id>local-maven-repo</id>
<url>file:///${project.basedir}/lib-mvn</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>edg.graphlib</groupId>
<artifactId>graphlib</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>com.github.javaparser</groupId>
Expand Down