|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 |
|
| 6 | + <parent> |
| 7 | + <groupId>basil</groupId> |
| 8 | + <artifactId>parent</artifactId> |
| 9 | + <version>0.2.0-SNAPSHOT</version> |
| 10 | + <relativePath>../parent</relativePath> |
| 11 | + </parent> |
6 | 12 | <groupId>basil</groupId>
|
7 | 13 | <artifactId>basil</artifactId>
|
8 | 14 | <version>0.2.0-SNAPSHOT</version>
|
|
12 | 18 |
|
13 | 19 | <description>Tool for Building web Apis SImpLy on top of sparql endpoints</description>
|
14 | 20 |
|
15 |
| - <properties> |
16 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 |
| - <!-- Versions --> |
18 |
| - <slf4j.version>1.7.7</slf4j.version> |
19 |
| - <!-- current log4j 2 release --> |
20 |
| - <log4j.version>2.1</log4j.version> |
21 |
| - <!-- jetty --> |
22 |
| - <org.eclipse.jetty.version>9.2.3.v20140905</org.eclipse.jetty.version> |
23 |
| - </properties> |
24 |
| - |
25 | 21 | <dependencies>
|
26 | 22 | <!-- Logging -->
|
27 | 23 | <dependency>
|
28 | 24 | <groupId>org.slf4j</groupId>
|
29 | 25 | <artifactId>slf4j-api</artifactId>
|
30 |
| - <version>${slf4j.version}</version> |
31 | 26 | </dependency>
|
32 | 27 | <!-- Binding for Log4J -->
|
33 | 28 | <dependency>
|
34 | 29 | <groupId>org.apache.logging.log4j</groupId>
|
35 | 30 | <artifactId>log4j-slf4j-impl</artifactId>
|
36 |
| - <version>${log4j.version}</version> |
37 | 31 | </dependency>
|
38 | 32 | <!-- Log4j API and Core implementation required for binding -->
|
39 | 33 | <dependency>
|
40 | 34 | <groupId>org.apache.logging.log4j</groupId>
|
41 | 35 | <artifactId>log4j-api</artifactId>
|
42 |
| - <version>${log4j.version}</version> |
43 | 36 | </dependency>
|
44 | 37 | <dependency>
|
45 | 38 | <groupId>org.apache.logging.log4j</groupId>
|
46 | 39 | <artifactId>log4j-core</artifactId>
|
47 |
| - <version>${log4j.version}</version> |
48 | 40 | </dependency>
|
49 | 41 |
|
50 | 42 | <!-- Test -->
|
|
59 | 51 | <dependency>
|
60 | 52 | <groupId>javax.servlet</groupId>
|
61 | 53 | <artifactId>javax.servlet-api</artifactId>
|
62 |
| - <version>3.1.0</version> |
63 | 54 | </dependency>
|
64 | 55 | <dependency>
|
65 | 56 | <groupId>com.github.spullara.mustache.java</groupId>
|
66 | 57 | <artifactId>compiler</artifactId>
|
67 |
| - <version>0.9.0</version> |
68 | 58 | </dependency>
|
69 | 59 | <dependency>
|
70 | 60 | <groupId>org.mozilla</groupId>
|
71 | 61 | <artifactId>rhino</artifactId>
|
72 |
| - <version>1.7R5</version> |
73 | 62 | </dependency>
|
74 | 63 | <dependency>
|
75 | 64 | <groupId>commons-io</groupId>
|
76 | 65 | <artifactId>commons-io</artifactId>
|
77 |
| - <version>2.4</version> |
78 | 66 | <exclusions>
|
79 | 67 | <exclusion>
|
80 | 68 | <groupId>log4j</groupId>
|
|
89 | 77 | <dependency>
|
90 | 78 | <groupId>org.apache.commons</groupId>
|
91 | 79 | <artifactId>commons-collections4</artifactId>
|
92 |
| - <version>4.0</version> |
93 | 80 | </dependency>
|
94 | 81 | <dependency>
|
95 | 82 | <groupId>com.googlecode.json-simple</groupId>
|
96 | 83 | <artifactId>json-simple</artifactId>
|
97 |
| - <version>1.1.1</version> |
98 | 84 | </dependency>
|
99 | 85 | <dependency>
|
100 | 86 | <groupId>org.apache.jena</groupId>
|
101 | 87 | <artifactId>jena-core</artifactId>
|
102 |
| - <version>2.12.1</version> |
103 | 88 | <exclusions>
|
104 | 89 | <exclusion>
|
105 | 90 | <groupId>log4j</groupId>
|
|
114 | 99 | <dependency>
|
115 | 100 | <groupId>org.apache.jena</groupId>
|
116 | 101 | <artifactId>jena-arq</artifactId>
|
117 |
| - <version>2.12.1</version> |
118 | 102 | <exclusions>
|
119 | 103 | <exclusion>
|
120 | 104 | <groupId>log4j</groupId>
|
|
131 | 115 | <dependency>
|
132 | 116 | <groupId>org.glassfish.jersey.containers</groupId>
|
133 | 117 | <artifactId>jersey-container-servlet</artifactId>
|
134 |
| - <version>2.14</version> |
135 | 118 | </dependency>
|
136 | 119 | <dependency>
|
137 | 120 | <groupId>org.eclipse.jetty</groupId>
|
138 | 121 | <artifactId>jetty-server</artifactId>
|
139 |
| - <version>${org.eclipse.jetty.version}</version> |
140 | 122 | </dependency>
|
141 | 123 | <dependency>
|
142 | 124 | <groupId>org.eclipse.jetty</groupId>
|
143 | 125 | <artifactId>jetty-webapp</artifactId>
|
144 |
| - <version>${org.eclipse.jetty.version}</version> |
145 | 126 | </dependency>
|
146 | 127 |
|
147 | 128 | <!-- Standalone -->
|
148 | 129 | <dependency>
|
149 | 130 | <groupId>commons-cli</groupId>
|
150 | 131 | <artifactId>commons-cli</artifactId>
|
151 |
| - <version>1.2</version> |
152 | 132 | </dependency>
|
153 | 133 |
|
154 | 134 | <!-- Swagger -->
|
155 | 135 | <dependency>
|
156 | 136 | <groupId>com.wordnik</groupId>
|
157 | 137 | <artifactId>swagger-jersey2-jaxrs_2.10</artifactId>
|
158 | 138 | <scope>compile</scope>
|
159 |
| - <version>1.3.12</version> |
160 | 139 | <exclusions>
|
161 | 140 | <exclusion>
|
162 | 141 | <groupId>javax.ws.rs</groupId>
|
|
167 | 146 | <dependency>
|
168 | 147 | <groupId>com.thetransactioncompany</groupId>
|
169 | 148 | <artifactId>cors-filter</artifactId>
|
170 |
| - <version>1.3.2</version> |
171 | 149 | <exclusions>
|
172 | 150 | <exclusion>
|
173 | 151 | <artifactId>servlet-api</artifactId>
|
|
0 commit comments