Skip to content

Commit

Permalink
Improved the examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmihajlovski committed Feb 26, 2017
1 parent ec1af33 commit d0c7c72
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
Empty file.
Expand Up @@ -12,7 +12,7 @@
* This test will execute the main class specified in the annotation.
*/
@IntegrationTest(main = Main.class)
public class HelloWorldTest extends RapidoidIntegrationTest {
public class WebTest extends RapidoidIntegrationTest {

@Test
public void testHelloWorld() {
Expand Down
18 changes: 18 additions & 0 deletions examples/pom.xml
@@ -0,0 +1,18 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.rapidoid</groupId>
<artifactId>examples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>getting-started</module>
<module>guice-integration</module>
<module>hello-world</module>
<module>rest-api</module>
<!--...-->
</modules>

</project>

0 comments on commit d0c7c72

Please sign in to comment.