-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from aol/boot-merge
Boot merge
- Loading branch information
Showing
35 changed files
with
240 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 0 additions & 160 deletions
160
micro-boot/src/main/java/com/aol/micro/server/boot/config/MicrobootApp.java
This file was deleted.
Oops, something went wrong.
53 changes: 0 additions & 53 deletions
53
micro-boot/src/main/java/com/aol/micro/server/boot/config/MicrobootConfigurator.java
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
micro-boot/src/main/java/com/aol/micro/server/spring/boot/BootPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.aol.micro.server.spring.boot; | ||
|
||
import com.aol.micro.server.Plugin; | ||
import com.aol.micro.server.spring.SpringBuilder; | ||
|
||
/** | ||
* | ||
* @author johnmcclean | ||
* | ||
*/ | ||
public class BootPlugin implements Plugin{ | ||
|
||
|
||
/** | ||
* @return Engine for building Spring Context | ||
*/ | ||
public SpringBuilder springBuilder(){ | ||
return new BootApplicationConfigurator(); | ||
} | ||
|
||
|
||
} |
1 change: 1 addition & 0 deletions
1
micro-boot/src/main/resources/META-INF/services/com.aol.micro.server.Plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
com.aol.micro.server.spring.boot.BootPlugin |
Oops, something went wrong.