Unable to Run the first example
Brought to you by:
niallg
Hello,
I'm trying to run the Helloworld example on your tutorial (http://www.simpleframework.org/doc/tutorial/tutorial.php#start).
Unfortunatly, it seems I'm not using the right dependency in my pom because some classes are not available (org.simpleframework.http.core.ContainerServer and org.simpleframework.transport.Server). These classes are also not referenced in the javadoc on your site.
Here are the dependency I'm using:
<dependency> <groupId>org.simpleframework</groupId> <artifactId>simple-http</artifactId> <version>6.0.1</version> </dependency> <dependency> <groupId>org.simpleframework</groupId> <artifactId>simple-transport</artifactId> <version>6.0.1</version> </dependency> <dependency> <groupId>org.simpleframework</groupId> <artifactId>simple-common</artifactId> <version>6.0.1</version> </dependency>
What did I do wrong?
Best regards,
Jean-Marc Astesana
Everything is fine before version 6.
It seems the classes has vanished when you've split the jar in three parts.
Regards