Skip to content
Merged
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
30 changes: 28 additions & 2 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,31 @@
Prefer explicit binding using `com.google.inject.Module` over `@Named` annotations.
Use `@Named` for top-level modules and server plugins.

Some classes require explicit bindings using `Multibinder.newSetBinder`:
- com.walmartlabs.concord.server.sdk.ScheduledTask
Some classes require explicit binding using `Multibinder.newSetBinder`:
- ApiDescriptor
- AuditLogListener
- AuthenticationHandler
- BackgroundTask
- Component
- ContextHandlerConfigurator
- CustomEnqueueProcessor
- ExceptionMapper
- Filter
- FilterChainConfigurator
- FilterHolder
- GaugeProvider
- HttpServlet
- ModeProcessor
- PolicyApplier
- ProcessEventListener
- ProcessLogListener
- ProcessStatusListener
- ProcessWaitHandler
- Realm
- RepositoryRefreshListener
- RequestErrorHandler
- ScheduledTask
- SecretStore
- ServletContextListener
- ServletHolder
- UserInfoProvider
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ See the [examples](examples) directory.

## How To Release New Versions

- perform the regular Maven release:
- perform a regular Maven release:
```
$ ./mvnw release:prepare release:perform
```
- push the tags:
- push the new tag:
```
$ git push --tags
$ git push origin RELEASE_TAG
```
- sync to Central;
- sync to [Central](https://central.sonatype.com/);
- build and push the Docker images:
```
$ git checkout RELEASE_TAG
Expand Down
6 changes: 6 additions & 0 deletions plugins/tasks/smtp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<exclusions>
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
Expand Down
6 changes: 6 additions & 0 deletions runtime/v2/runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<exclusions>
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>javax.activation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
Expand Down
3 changes: 3 additions & 0 deletions sdk/src/main/java/com/walmartlabs/concord/sdk/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ public static class Request {
* Container configuration.
* @deprecated the container-per-process execution mode is deprecated.
*/
@Deprecated
public static final String CONTAINER = "container";

/**
Expand Down Expand Up @@ -242,6 +243,7 @@ public static class Request {
* Resume event name. Filled in for processes resumed after being suspended.
* @deprecated see {@link #RESUME_EVENTS_KEY}
*/
@Deprecated
public static final String EVENT_NAME_KEY = "resumeEventName";

/**
Expand Down Expand Up @@ -461,6 +463,7 @@ public static class Files {
* File which contains process session token.
* @deprecated use {@code ProcessConfiguration#sessionToken()}
*/
@Deprecated
public static final String SESSION_TOKEN_FILE_NAME = ".session_token";

/**
Expand Down