|
101 | 101 | <archive>
|
102 | 102 | <manifest>
|
103 | 103 | <addClasspath>true</addClasspath>
|
104 |
| - <!-- Configures the classpath prefix. This configuration option is |
| 104 | + <!-- Configures the classpath prefix. This configuration option is |
105 | 105 | used to specify that all needed libraries are found under lib/ directory. -->
|
106 | 106 | <classpathPrefix>lib/</classpathPrefix>
|
107 | 107 | <!-- Specifies the main class of the application -->
|
|
113 | 113 | </archive>
|
114 | 114 | </configuration>
|
115 | 115 | </plugin>
|
116 |
| - |
| 116 | + |
117 | 117 | <plugin>
|
118 | 118 | <groupId>org.apache.maven.plugins</groupId>
|
119 | 119 | <artifactId>maven-surefire-plugin</artifactId>
|
120 | 120 | <version>2.10</version>
|
121 | 121 | </plugin>
|
122 |
| - |
| 122 | + |
123 | 123 | <plugin>
|
124 | 124 | <groupId>org.codehaus.mojo</groupId>
|
125 | 125 | <artifactId>buildnumber-maven-plugin</artifactId>
|
|
161 | 161 | <artifactId>maven-assembly-plugin</artifactId>
|
162 | 162 | <version>2.4</version>
|
163 | 163 | <dependencies>
|
164 |
| - <!-- Pin the versions of plexus-archiver and plexus-io as |
165 |
| - there are apparently two bugs in the versions on which |
166 |
| - maven-assembly-plugin depends on by default. See |
| 164 | + <!-- Pin the versions of plexus-archiver and plexus-io as |
| 165 | + there are apparently two bugs in the versions on which |
| 166 | + maven-assembly-plugin depends on by default. See |
167 | 167 | http://www.misanthropicgeek.net/?p=1303 for details. -->
|
168 | 168 | <dependency>
|
169 | 169 | <groupId>org.codehaus.plexus</groupId>
|
|
206 | 206 | <groupId>org.apache.maven.plugins</groupId>
|
207 | 207 | <artifactId>maven-release-plugin</artifactId>
|
208 | 208 | <version>2.4</version><!--$NO-MVN-MAN-VER$ -->
|
209 |
| - <!-- m2e complains about a different plugin version being specified in |
210 |
| - the parent pom. However, this is not actually problem for maven. So, we can |
| 209 | + <!-- m2e complains about a different plugin version being specified in |
| 210 | + the parent pom. However, this is not actually problem for maven. So, we can |
211 | 211 | ignore the warning. -->
|
212 | 212 | </plugin>
|
213 | 213 |
|
214 | 214 | </plugins>
|
215 | 215 | </build>
|
216 | 216 |
|
217 | 217 | <dependencies>
|
218 |
| - |
| 218 | + |
219 | 219 | <dependency>
|
220 | 220 | <groupId>org.culturegraph</groupId>
|
221 | 221 | <artifactId>metafacture-core</artifactId>
|
222 |
| - <version>3.1.2</version> |
| 222 | + <version>4.0.0</version> |
223 | 223 | </dependency>
|
224 | 224 |
|
225 | 225 | <!-- In a perfect world the slf4j binding would be a
|
226 | 226 | provided dependency so that the user can replace
|
227 | 227 | it easily with a different binding. However, slf4j
|
228 | 228 | does not use the context class loader for loading
|
229 |
| - its binding but the same class loader which was |
| 229 | + its binding but the same class loader which was |
230 | 230 | used to load the classes of the slf4j-api. Until
|
231 | 231 | a solution is found for this problem, the binding
|
232 | 232 | need to be placed on the class path. -->
|
|
239 | 239 | <!-- The following dependencies are placed in the "provided"
|
240 | 240 | scope to prevent them from being included in the class
|
241 | 241 | path but still have them available for building the
|
242 |
| - distribution assembly. |
243 |
| - The reason for this is that an appropriate implementation |
244 |
| - for jndi depends on the runtime environment and |
245 |
| - should be chosen by the user of the package and not the |
| 242 | + distribution assembly. |
| 243 | + The reason for this is that an appropriate implementation |
| 244 | + for jndi depends on the runtime environment and |
| 245 | + should be chosen by the user of the package and not the |
246 | 246 | package implementer. However, we also attempt to build
|
247 |
| - a distribution package which should include everything |
248 |
| - that is required for metafacture-runner/Flux to work out |
| 247 | + a distribution package which should include everything |
| 248 | + that is required for metafacture-runner/Flux to work out |
249 | 249 | of the box. By including the dependencies in the assembly
|
250 |
| - without putting them on the class path, the user can |
251 |
| - replace them easily with other implementations if |
| 250 | + without putting them on the class path, the user can |
| 251 | + replace them easily with other implementations if |
252 | 252 | necessary. -->
|
253 | 253 | <dependency>
|
254 | 254 | <groupId>simple-jndi</groupId>
|
255 | 255 | <artifactId>simple-jndi</artifactId>
|
256 | 256 | <version>0.11.4.1</version>
|
257 | 257 | <scope>provided</scope>
|
258 | 258 | </dependency>
|
259 |
| - |
| 259 | + |
260 | 260 | <dependency>
|
261 | 261 | <!-- Required for connection pooling with simple-jndi -->
|
262 | 262 | <groupId>commons-dbcp</groupId>
|
|
0 commit comments