Skip to content

Commit 3d10a5f

Browse files
committed
project: update README and NOTES
1 parent d40d27f commit 3d10a5f

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

NOTES.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,31 @@
55
Prefer explicit binding using `com.google.inject.Module` over `@Named` annotations.
66
Use `@Named` for top-level modules and server plugins.
77

8-
Some classes require explicit bindings using `Multibinder.newSetBinder`:
9-
- com.walmartlabs.concord.server.sdk.ScheduledTask
8+
Some classes require explicit binding using `Multibinder.newSetBinder`:
9+
- ApiDescriptor
10+
- AuditLogListener
11+
- AuthenticationHandler
12+
- BackgroundTask
13+
- Component
14+
- ContextHandlerConfigurator
15+
- CustomEnqueueProcessor
16+
- ExceptionMapper
17+
- Filter
18+
- FilterChainConfigurator
19+
- FilterHolder
20+
- GaugeProvider
21+
- HttpServlet
22+
- ModeProcessor
23+
- PolicyApplier
24+
- ProcessEventListener
25+
- ProcessLogListener
26+
- ProcessStatusListener
27+
- ProcessWaitHandler
28+
- Realm
29+
- RepositoryRefreshListener
30+
- RequestErrorHandler
31+
- ScheduledTask
32+
- SecretStore
33+
- ServletContextListener
34+
- ServletHolder
35+
- UserInfoProvider

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ See the [examples](examples) directory.
103103

104104
## How To Release New Versions
105105

106-
- perform the regular Maven release:
106+
- perform a regular Maven release:
107107
```
108108
$ ./mvnw release:prepare release:perform
109109
```
110-
- push the tags:
110+
- push the new tag:
111111
```
112-
$ git push --tags
112+
$ git push origin RELEASE_TAG
113113
```
114-
- sync to Central;
114+
- sync to [Central](https://central.sonatype.com/);
115115
- build and push the Docker images:
116116
```
117117
$ git checkout RELEASE_TAG

0 commit comments

Comments
 (0)