123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <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>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>
- <dependency>
- <groupId>org.develop.officialjournal</groupId>
- <artifactId>database</artifactId>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.develop.officialjournal</groupId>
- <artifactId>database</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|