Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mvn package
Enter the following to launch the app in Maven.

```bash
java -jar target/bootique-mvc-demo-1.0-SNAPSHOT.jar
java -jar target/bootique-shiro-demo-2.0.jar
```

After launching the app, go to
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<artifactId>bootique-shiro-demo</artifactId>
<groupId>io.bootique.shiro.demo</groupId>
<version>1.0-SNAPSHOT</version>
<version>2.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>io.bootique.bom</groupId>
<artifactId>bootique-bom</artifactId>
<version>1.0.RC1</version>
<version>2.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/bootique/shiro/demo/Application.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package io.bootique.shiro.demo;

import com.google.inject.Binder;
import com.google.inject.Module;
import io.bootique.BaseModule;
import io.bootique.Bootique;
import io.bootique.di.Binder;
import io.bootique.jersey.JerseyModule;
import io.bootique.shiro.demo.controller.LoginController;
import io.bootique.shiro.demo.controller.ShiroController;

public class Application implements Module {
public class Application extends BaseModule {

public static void main(String[] args) {
Bootique
Expand Down