Skip to content

Commit 2dd0242

Browse files
committed
Tidies up factory service imports. Removes duplicate plugin module. Updates changelog.

1 parent 9dff6e5 commit 2dd0242

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77
### Added
8+
- Adds HTTP bot.
9+
- Adds Slack backend.
810
- Adds a RESTful API store.
911
- Adds a store implementation that mirrors writes to the backing store to another, separate, store implementation.
1012
- Allows chat service implementations to indicate support for user termination.
13+
- Adds the ability to start with an empty action configuration.
14+
- Allows version placeholder to be used in plugin files.
1115

1216
### Changed
13-
- Moves plugins to single directory. Changed Maven artifact names for plugins.
17+
- Moves plugins to single directory.
18+
- Changes Maven artifact names for plugins.
1419

1520
## [1.1.2] - 2017-11-05
1621
### Fixed

core/engine/src/main/kotlin/com/gatehill/corebot/chat/template/FactoryService.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package com.gatehill.corebot.chat.template
22

3-
import com.gatehill.corebot.operation.OperationFactoryConverter
4-
import com.gatehill.corebot.action.OperationFactoryConverter
53
import com.gatehill.corebot.chat.SessionService
64
import com.gatehill.corebot.chat.filter.CommandFilter
75
import com.gatehill.corebot.chat.filter.FilterConfig
86
import com.gatehill.corebot.chat.filter.RegexFilter
97
import com.gatehill.corebot.chat.filter.StringFilter
108
import com.gatehill.corebot.config.ConfigService
9+
import com.gatehill.corebot.operation.OperationFactoryConverter
1110
import com.gatehill.corebot.operation.factory.OperationFactory
1211
import com.gatehill.corebot.operation.factory.Template
1312
import com.google.inject.Injector

settings.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ project(':backends:deployment:jobs').name = 'backends-deployment-jobs'
1111
include ':backends:deployment:rundeck'
1212
project(':backends:deployment:rundeck').name = 'backends-deployment-rundeck'
1313

14-
include ':backends:deployment:rundeck:plugin'
15-
project(':backends:deployment:rundeck:plugin').name = 'backends-deployment-rundeck-plugin'
16-
1714
include ':backends:deployment:test'
1815
project(':backends:deployment:test').name = 'backends-deployment-test'
1916

0 commit comments

Comments
 (0)