File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
src/org/linkeddatafragments/servlet Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 30
30
<artifactId >httpclient</artifactId >
31
31
<version >4.3.5</version >
32
32
</dependency >
33
- <dependency >
33
+ <dependency >
34
+ <groupId >com.google.code.gson</groupId >
35
+ <artifactId >gson</artifactId >
36
+ <version >2.5</version >
37
+ </dependency >
38
+ <dependency >
34
39
<groupId >javax.servlet</groupId >
35
40
<artifactId >javax.servlet-api</artifactId >
36
41
<version >3.1.0</version >
46
51
<artifactId >jetty-servlet</artifactId >
47
52
<version >${jettyVersion} </version >
48
53
</dependency >
54
+ <dependency >
55
+ <groupId >commons-cli</groupId >
56
+ <artifactId >commons-cli</artifactId >
57
+ <version >1.3.1</version >
58
+ </dependency >
49
59
<dependency >
50
60
<groupId >org.apache.commons</groupId >
51
61
<artifactId >commons-lang3</artifactId >
58
68
<version >2.6</version >
59
69
<type >jar</type >
60
70
</dependency >
61
- <dependency >
62
- <groupId >com.google.code.gson</groupId >
63
- <artifactId >gson</artifactId >
64
- <version >2.5</version >
65
- </dependency >
66
- <dependency >
67
- <groupId >commons-cli</groupId >
68
- <artifactId >commons-cli</artifactId >
69
- <version >1.3.1</version >
70
- </dependency >
71
- </dependencies >
71
+ </dependencies >
72
72
<build >
73
73
<sourceDirectory >src</sourceDirectory >
74
74
<plugins >
Original file line number Diff line number Diff line change 2
2
3
3
import java .io .File ;
4
4
import java .io .FileReader ;
5
+ import java .io .IOException ;
5
6
import java .util .ArrayList ;
6
7
import java .util .Collection ;
7
8
import java .util .HashMap ;
40
41
import org .linkeddatafragments .datasource .IDataSource ;
41
42
import org .linkeddatafragments .exceptions .DataSourceException ;
42
43
import org .linkeddatafragments .util .CommonResources ;
43
-
44
44
import org .linkeddatafragments .util .MIMEParse ;
45
45
46
46
/**
You can’t perform that action at this time.
0 commit comments