Skip to content
Snippets Groups Projects
Commit 9d12e624 authored by nie's avatar nie
Browse files

new kieker-jar

parent e94c0869
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -202,7 +202,7 @@
<artifactId>kieker</artifactId>
<version>1.5-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/kieker-1.5-SNAPSHOT_emf.jar</systemPath>
<systemPath>${project.basedir}/lib/kieker-1.6-SNAPSHOT_emf.jar</systemPath>
</dependency>
<dependency>
<groupId>commons-io</groupId>
......@@ -320,7 +320,7 @@
</goals>
<configuration>
<tasks>
<copy file="${project.basedir}/lib/kieker-1.5-SNAPSHOT_emf.jar"
<copy file="${project.basedir}/lib/kieker-1.6-SNAPSHOT_emf.jar"
todir="${project.build.directory}/Kieker.WebGUI-${project.version}/WEB-INF/lib"/>
</tasks>
</configuration>
......
......@@ -48,9 +48,9 @@ public class PluginFinderTest extends TestCase {
public void testKiekerJarContainsPlugins() {
/* It can be assumed that the kieker jar contains at least one plugin. */
try {
PluginClassLoader.getInstance().addURL(new URL("file", "localhost", "lib/kieker-1.5-SNAPSHOT_emf.jar"));
PluginClassLoader.getInstance().addURL(new URL("file", "localhost", "lib/kieker-1.6-SNAPSHOT_emf.jar"));
final List<Class<AbstractPlugin>> availableKiekerPlugins = PluginFinder.getAllPluginsWithinJar(new URL("file", "localhost",
"lib/kieker-1.5-SNAPSHOT_emf.jar"));
"lib/kieker-1.6-SNAPSHOT_emf.jar"));
Assert.assertTrue("Kieker-Jar seems to contain no plugins.", availableKiekerPlugins.size() > 0);
} catch (final MalformedURLException ex) {
Assert.fail("Exception occured.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment