Skip to content
Snippets Groups Projects
Commit 0b95b48a authored by Nils Christian Ehmke's avatar Nils Christian Ehmke
Browse files

Modified the files for the new kieker-jar-file.

parent d2c2fce3
No related branches found
No related tags found
No related merge requests found
File deleted
File added
...@@ -31,21 +31,6 @@ ...@@ -31,21 +31,6 @@
<artifactId>jsf-impl</artifactId> <artifactId>jsf-impl</artifactId>
<version>2.1.6</version> <version>2.1.6</version>
</dependency> </dependency>
<dependency>
<groupId>org.eclipse.emf</groupId>
<artifactId>org.eclipse.emf.common</artifactId>
<version>2.6.0.v20100614-1136</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf</groupId>
<artifactId>ecore-xmi</artifactId>
<version>2.2.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf</groupId>
<artifactId>org.eclipse.emf.ecore</artifactId>
<version>2.6.0.v20100614-1136</version>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
...@@ -217,7 +202,7 @@ ...@@ -217,7 +202,7 @@
<artifactId>kieker</artifactId> <artifactId>kieker</artifactId>
<version>1.5-SNAPSHOT</version> <version>1.5-SNAPSHOT</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${project.basedir}/lib/kieker-1.5-SNAPSHOT.jar</systemPath> <systemPath>${project.basedir}/lib/kieker-analysis-1.5-SNAPSHOT.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
...@@ -335,7 +320,7 @@ ...@@ -335,7 +320,7 @@
</goals> </goals>
<configuration> <configuration>
<tasks> <tasks>
<copy file="${project.basedir}/lib/kieker-1.5-SNAPSHOT.jar" <copy file="${project.basedir}/lib/kieker-analysis-1.5-SNAPSHOT.jar"
todir="${project.build.directory}/Kieker.WebGUI-${project.version}/WEB-INF/lib"/> todir="${project.build.directory}/Kieker.WebGUI-${project.version}/WEB-INF/lib"/>
</tasks> </tasks>
</configuration> </configuration>
......
...@@ -48,9 +48,9 @@ public class PluginFinderTest extends TestCase { ...@@ -48,9 +48,9 @@ public class PluginFinderTest extends TestCase {
public void testKiekerJarContainsPlugins() { public void testKiekerJarContainsPlugins() {
/* It can be assumed that the kieker jar contains at least one plugin. */ /* It can be assumed that the kieker jar contains at least one plugin. */
try { try {
PluginClassLoader.getInstance().addURL(new URL("file", "localhost", "lib/kieker-1.5-SNAPSHOT.jar")); PluginClassLoader.getInstance().addURL(new URL("file", "localhost", "lib/kieker-analysis-1.5-SNAPSHOT.jar"));
final List<Class<AbstractPlugin>> availableKiekerPlugins = PluginFinder.getAllPluginsWithinJar(new URL("file", "localhost", final List<Class<AbstractPlugin>> availableKiekerPlugins = PluginFinder.getAllPluginsWithinJar(new URL("file", "localhost",
"lib/kieker-1.5-SNAPSHOT.jar")); "lib/kieker-analysis-1.5-SNAPSHOT.jar"));
Assert.assertTrue("Kieker-Jar seems to contain no plugins.", availableKiekerPlugins.size() > 0); Assert.assertTrue("Kieker-Jar seems to contain no plugins.", availableKiekerPlugins.size() > 0);
} catch (final MalformedURLException ex) { } catch (final MalformedURLException ex) {
Assert.fail("Exception occured."); 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