12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>corg.develop.officialjournal</groupId>
- <artifactId>extractor</artifactId>
- <version>1.0</version>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
-
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>com.develop</groupId>
- <artifactId>doDatabase</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.graphstream</groupId>
- <artifactId>gs-core</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>org.jgrapht</groupId>
- <artifactId>jgrapht-core</artifactId>
- <version>0.9.2</version>
- </dependency>
- <dependency>
- <groupId>org.jgrapht</groupId>
- <artifactId>jgrapht-ext</artifactId>
- <version>0.9.1</version>
- </dependency>
- </dependencies>
- </project>
|