|
1 | | -<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"> |
2 | | - <parent> |
3 | | - <groupId>jsprit</groupId> |
4 | | - <artifactId>jsprit</artifactId> |
5 | | - <version>1.6.2-SNAPSHOT</version> |
6 | | - </parent> |
7 | | - <modelVersion>4.0.0</modelVersion> |
8 | | - <artifactId>jsprit-analysis</artifactId> |
9 | | - <packaging>jar</packaging> |
10 | | - |
11 | | - <build> |
12 | | - <pluginManagement> |
13 | | - <plugins> |
14 | | - <plugin> |
15 | | - <groupId>org.eclipse.m2e</groupId> |
16 | | - <artifactId>lifecycle-mapping</artifactId> |
17 | | - <version>1.0.0</version> |
18 | | - <configuration> |
19 | | - <lifecycleMappingMetadata> |
20 | | - <pluginExecutions> |
21 | | - <pluginExecution> |
22 | | - <pluginExecutionFilter> |
23 | | - <groupId>org.apache.maven.plugins</groupId> |
24 | | - <artifactId>maven-enforcer-plugin</artifactId> |
25 | | - <versionRange>[1.0.0,)</versionRange> |
26 | | - <goals> |
27 | | - <goal>enforce</goal> |
28 | | - </goals> |
29 | | - </pluginExecutionFilter> |
30 | | - <action> |
31 | | - <ignore /> |
32 | | - </action> |
33 | | - </pluginExecution> |
34 | | - </pluginExecutions> |
35 | | - </lifecycleMappingMetadata> |
36 | | - </configuration> |
37 | | - </plugin> |
38 | | - </plugins> |
39 | | - </pluginManagement> |
40 | | - </build> |
41 | | - |
42 | | - <dependencies> |
43 | | - <dependency> |
44 | | - <groupId>org.jfree</groupId> |
45 | | - <artifactId>jfreechart</artifactId> |
46 | | - <version>1.0.19</version> |
47 | | - <scope>compile</scope> |
48 | | - </dependency> |
49 | | - |
50 | | - <dependency> |
51 | | - <groupId>${project.groupId}</groupId> |
52 | | - <artifactId>jsprit-core</artifactId> |
53 | | - <version>${project.version}</version> |
54 | | - <type>jar</type> |
55 | | - <scope>provided</scope> |
56 | | - </dependency> |
57 | | - |
58 | | - <dependency> |
59 | | - <artifactId>gs-core</artifactId> |
60 | | - <groupId>org.graphstream</groupId> |
61 | | - <version>1.3</version> |
62 | | - <optional>false</optional> |
63 | | - </dependency> |
64 | | - |
65 | | - <dependency> |
66 | | - <artifactId>gs-ui</artifactId> |
67 | | - <groupId>org.graphstream</groupId> |
68 | | - <version>1.3</version> |
69 | | - <optional>false</optional> |
70 | | - </dependency> |
71 | | - |
72 | | - </dependencies> |
73 | | - |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <parent> |
| 4 | + <groupId>jsprit</groupId> |
| 5 | + <artifactId>jsprit</artifactId> |
| 6 | + <version>1.6.2-SNAPSHOT</version> |
| 7 | + </parent> |
| 8 | + <modelVersion>4.0.0</modelVersion> |
| 9 | + <artifactId>jsprit-analysis</artifactId> |
| 10 | + <packaging>jar</packaging> |
| 11 | + |
| 12 | + <build> |
| 13 | + <pluginManagement> |
| 14 | + <plugins> |
| 15 | + <plugin> |
| 16 | + <groupId>org.eclipse.m2e</groupId> |
| 17 | + <artifactId>lifecycle-mapping</artifactId> |
| 18 | + <version>1.0.0</version> |
| 19 | + <configuration> |
| 20 | + <lifecycleMappingMetadata> |
| 21 | + <pluginExecutions> |
| 22 | + <pluginExecution> |
| 23 | + <pluginExecutionFilter> |
| 24 | + <groupId>org.apache.maven.plugins</groupId> |
| 25 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 26 | + <versionRange>[1.0.0,)</versionRange> |
| 27 | + <goals> |
| 28 | + <goal>enforce</goal> |
| 29 | + </goals> |
| 30 | + </pluginExecutionFilter> |
| 31 | + <action> |
| 32 | + <ignore/> |
| 33 | + </action> |
| 34 | + </pluginExecution> |
| 35 | + </pluginExecutions> |
| 36 | + </lifecycleMappingMetadata> |
| 37 | + </configuration> |
| 38 | + </plugin> |
| 39 | + </plugins> |
| 40 | + </pluginManagement> |
| 41 | + </build> |
| 42 | + |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>org.jfree</groupId> |
| 46 | + <artifactId>jfreechart</artifactId> |
| 47 | + <version>1.0.19</version> |
| 48 | + <scope>compile</scope> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>${project.groupId}</groupId> |
| 53 | + <artifactId>jsprit-core</artifactId> |
| 54 | + <version>${project.version}</version> |
| 55 | + <type>jar</type> |
| 56 | + <scope>provided</scope> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <artifactId>gs-core</artifactId> |
| 61 | + <groupId>org.graphstream</groupId> |
| 62 | + <version>1.3</version> |
| 63 | + <optional>false</optional> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <artifactId>gs-ui</artifactId> |
| 68 | + <groupId>org.graphstream</groupId> |
| 69 | + <version>1.3</version> |
| 70 | + <optional>false</optional> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + </dependencies> |
| 74 | + |
74 | 75 | </project> |
0 commit comments