Skip to content

Commit 58afc35

Browse files
committed
comply with .editorconfig
1 parent 0df651c commit 58afc35

File tree

81 files changed

+43724
-43597
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+43724
-43597
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
insert_final_newline = true
7+
charset = utf-8
8+
end_of_line = lf
9+
trim_trailing_whitespace = true
10+
max_line_length = 120
11+
12+
[.travis.yml]
13+
indent_size = 2

jsprit-analysis/pom.xml

+74-73
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,75 @@
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+
7475
</project>

jsprit-core/pom.xml

+71-71
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32
~ Copyright (C) 2014 Stefan Schroeder
43
~
@@ -16,79 +15,80 @@
1615
~ License along with this library. If not, see <http://www.gnu.org/licenses />.
1716
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
1817

19-
<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">
20-
<parent>
21-
<groupId>jsprit</groupId>
22-
<artifactId>jsprit</artifactId>
23-
<version>1.6.2-SNAPSHOT</version>
24-
</parent>
25-
<modelVersion>4.0.0</modelVersion>
26-
<artifactId>jsprit-core</artifactId>
27-
<name>jsprit-core</name>
18+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<parent>
21+
<groupId>jsprit</groupId>
22+
<artifactId>jsprit</artifactId>
23+
<version>1.6.2-SNAPSHOT</version>
24+
</parent>
25+
<modelVersion>4.0.0</modelVersion>
26+
<artifactId>jsprit-core</artifactId>
27+
<name>jsprit-core</name>
28+
29+
<build>
30+
<pluginManagement>
31+
<plugins>
32+
<plugin>
33+
<groupId>org.eclipse.m2e</groupId>
34+
<artifactId>lifecycle-mapping</artifactId>
35+
<version>1.0.0</version>
36+
<configuration>
37+
<lifecycleMappingMetadata>
38+
<pluginExecutions>
39+
<pluginExecution>
40+
<pluginExecutionFilter>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-enforcer-plugin</artifactId>
43+
<versionRange>[1.0.0,)</versionRange>
44+
<goals>
45+
<goal>enforce</goal>
46+
</goals>
47+
</pluginExecutionFilter>
48+
<action>
49+
<ignore/>
50+
</action>
51+
</pluginExecution>
52+
</pluginExecutions>
53+
</lifecycleMappingMetadata>
54+
</configuration>
55+
</plugin>
56+
</plugins>
57+
</pluginManagement>
58+
</build>
59+
60+
<dependencies>
61+
62+
<dependency>
63+
<groupId>org.apache.commons</groupId>
64+
<artifactId>commons-math</artifactId>
65+
<version>2.2</version>
66+
<type>jar</type>
67+
<scope>compile</scope>
68+
</dependency>
69+
70+
<dependency>
71+
<groupId>commons-configuration</groupId>
72+
<artifactId>commons-configuration</artifactId>
73+
<version>1.9</version>
74+
<type>jar</type>
75+
<scope>compile</scope>
76+
</dependency>
2877

29-
<build>
30-
<pluginManagement>
31-
<plugins>
32-
<plugin>
33-
<groupId>org.eclipse.m2e</groupId>
34-
<artifactId>lifecycle-mapping</artifactId>
35-
<version>1.0.0</version>
36-
<configuration>
37-
<lifecycleMappingMetadata>
38-
<pluginExecutions>
39-
<pluginExecution>
40-
<pluginExecutionFilter>
41-
<groupId>org.apache.maven.plugins</groupId>
42-
<artifactId>maven-enforcer-plugin</artifactId>
43-
<versionRange>[1.0.0,)</versionRange>
44-
<goals>
45-
<goal>enforce</goal>
46-
</goals>
47-
</pluginExecutionFilter>
48-
<action>
49-
<ignore />
50-
</action>
51-
</pluginExecution>
52-
</pluginExecutions>
53-
</lifecycleMappingMetadata>
54-
</configuration>
55-
</plugin>
56-
</plugins>
57-
</pluginManagement>
58-
</build>
78+
<dependency>
79+
<groupId>xerces</groupId>
80+
<artifactId>xercesImpl</artifactId>
81+
<version>2.11.0</version>
82+
<scope>compile</scope>
83+
</dependency>
5984

60-
<dependencies>
61-
62-
<dependency>
63-
<groupId>org.apache.commons</groupId>
64-
<artifactId>commons-math</artifactId>
65-
<version>2.2</version>
66-
<type>jar</type>
67-
<scope>compile</scope>
68-
</dependency>
69-
70-
<dependency>
71-
<groupId>commons-configuration</groupId>
72-
<artifactId>commons-configuration</artifactId>
73-
<version>1.9</version>
74-
<type>jar</type>
75-
<scope>compile</scope>
76-
</dependency>
85+
<dependency>
86+
<groupId>org.apache.commons</groupId>
87+
<artifactId>commons-math3</artifactId>
88+
<version>3.4</version>
89+
</dependency>
7790

78-
<dependency>
79-
<groupId>xerces</groupId>
80-
<artifactId>xercesImpl</artifactId>
81-
<version>2.11.0</version>
82-
<scope>compile</scope>
83-
</dependency>
91+
</dependencies>
8492

85-
<dependency>
86-
<groupId>org.apache.commons</groupId>
87-
<artifactId>commons-math3</artifactId>
88-
<version>3.4</version>
89-
</dependency>
9093

91-
</dependencies>
92-
93-
9494
</project>

0 commit comments

Comments
 (0)