diff --git a/samples/chat/project/build.properties b/samples/chat/project/build.properties deleted file mode 100644 index c8fcab54..00000000 --- a/samples/chat/project/build.properties +++ /dev/null @@ -1 +0,0 @@ -sbt.version=1.6.2 diff --git a/samples/chat/release.properties b/samples/chat/release.properties deleted file mode 100644 index 6395a7ee..00000000 --- a/samples/chat/release.properties +++ /dev/null @@ -1,9 +0,0 @@ -#release configuration -#Tue Feb 13 09:54:09 EST 2024 -completedPhase=scm-check-modifications -exec.additionalArguments=-Dmaven.test.skip\=true -Psonatype-oss-release -P disable-java8-doclint -preparationGoals=clean verify -pushChanges=true -remoteTagging=true -scm.commentPrefix=[maven-release-plugin] -scm.url=scm\:git\:git@github.com\:Atmosphere/atmosphere-samples.git/samples/atmosphere-chat diff --git a/samples/chat/resources/jetty-logging.properties b/samples/chat/resources/jetty-logging.properties deleted file mode 100644 index fba91898..00000000 --- a/samples/chat/resources/jetty-logging.properties +++ /dev/null @@ -1,10 +0,0 @@ -## Set logging levels from: ALL, TRACE, DEBUG, INFO, WARN, ERROR, OFF -org.eclipse.jetty.LEVEL=INFO -## Configure a level for an arbitrary logger tree -#com.example.LEVEL=INFO -## Configure a level for specific logger -#com.example.MyComponent.LEVEL=INFO -## Configure JMX Context Name -# org.eclipse.jetty.logging.jmx.context=JettyServer -## Hide stacks traces in an arbitrary logger tree -#com.example.STACKS=false diff --git a/samples/chat/start.d/deploy.ini b/samples/chat/start.d/deploy.ini deleted file mode 100644 index 312957e5..00000000 --- a/samples/chat/start.d/deploy.ini +++ /dev/null @@ -1,21 +0,0 @@ -# --------------------------------------- -# Module: deploy -# Enables web application deployment from the $JETTY_BASE/webapps/ directory. -# --------------------------------------- ---module=deploy - -# Monitored directory name (relative to $jetty.base) -# jetty.deploy.monitoredDir=webapps -# - OR - -# Monitored directory path (fully qualified) -# jetty.deploy.monitoredPath=/var/www/webapps - -# Defaults Descriptor for all deployed webapps -# jetty.deploy.defaultsDescriptorPath=${jetty.base}/etc/webdefault.xml - -# Monitored directory scan period (seconds) -# jetty.deploy.scanInterval=1 - -# Whether to extract *.war files -# jetty.deploy.extractWars=true - diff --git a/samples/chat/start.d/http.ini b/samples/chat/start.d/http.ini deleted file mode 100644 index 22321405..00000000 --- a/samples/chat/start.d/http.ini +++ /dev/null @@ -1,47 +0,0 @@ -# --------------------------------------- -# Module: http -# Enables a clear-text HTTP connector. -# By default clear-text HTTP/1.1 is enabled, and clear-text HTTP/2 may be added by enabling the "http2c" module. -# --------------------------------------- ---module=http - -### Clear-Text HTTP Connector Configuration - -## The host/address to bind the connector to. -# jetty.http.host=0.0.0.0 - -## The port the connector listens on. -# jetty.http.port=8080 - -## The connector idle timeout, in milliseconds. -# jetty.http.idleTimeout=30000 - -## The number of acceptors (-1 picks a default value based on number of cores). -# jetty.http.acceptors=1 - -## The number of selectors (-1 picks a default value based on number of cores). -# jetty.http.selectors=-1 - -## The ServerSocketChannel accept queue backlog (0 picks the platform default). -# jetty.http.acceptQueueSize=0 - -## The thread priority delta to give to acceptor threads. -# jetty.http.acceptorPriorityDelta=0 - -## Whether to enable the SO_REUSEADDR socket option. -# jetty.http.reuseAddress=true - -## Whether to enable the SO_REUSEPORT socket option. -# jetty.http.reusePort=false - -## Whether to enable the TCP_NODELAY socket option on accepted sockets. -# jetty.http.acceptedTcpNoDelay=true - -## The SO_RCVBUF socket option to set on accepted sockets. -## A value of -1 indicates that the platform default is used. -# jetty.http.acceptedReceiveBufferSize=-1 - -## The SO_SNDBUF socket option to set on accepted sockets. -## A value of -1 indicates that the platform default is used. -# jetty.http.acceptedSendBufferSize=-1 - diff --git a/samples/chat/start.d/server.ini b/samples/chat/start.d/server.ini deleted file mode 100644 index d1736bc2..00000000 --- a/samples/chat/start.d/server.ini +++ /dev/null @@ -1,84 +0,0 @@ -# --------------------------------------- -# Module: server -# Enables and configures the Jetty server. -# This module does not enable any network protocol support. -# To enable a specific network protocol such as HTTP/1.1, you must enable the correspondent Jetty module. -# --------------------------------------- ---module=server - -### Common HTTP configuration -## Scheme to use to build URIs for secure redirects -# jetty.httpConfig.secureScheme=https - -## Port to use to build URIs for secure redirects -# jetty.httpConfig.securePort=8443 - -## Response content buffer size (in bytes) -# jetty.httpConfig.outputBufferSize=32768 - -## Max response content write length that is buffered (in bytes) -# jetty.httpConfig.outputAggregationSize=8192 - -## Max request headers size (in bytes) -# jetty.httpConfig.requestHeaderSize=8192 - -## Max response headers size (in bytes) -# jetty.httpConfig.responseHeaderSize=8192 - -## Whether to send the Server: header -# jetty.httpConfig.sendServerVersion=true - -## Whether to send the Date: header -# jetty.httpConfig.sendDateHeader=false - -## Max per-connection header cache size (in nodes) -# jetty.httpConfig.headerCacheSize=1024 - -## Whether, for requests with content, delay dispatch until some content has arrived -# jetty.httpConfig.delayDispatchUntilContent=true - -## Maximum number of error dispatches to prevent looping -# jetty.httpConfig.maxErrorDispatches=10 - -## Relative Redirect Locations allowed -# jetty.httpConfig.relativeRedirectAllowed=false - -## Whether to use direct ByteBuffers for reading or writing -# jetty.httpConfig.useInputDirectByteBuffers=true -# jetty.httpConfig.useOutputDirectByteBuffers=true - -## HTTP Compliance: RFC7230, RFC7230_LEGACY, RFC2616, RFC2616_LEGACY, LEGACY -# jetty.httpConfig.compliance=RFC7230 - -## URI Compliance: DEFAULT, LEGACY, RFC3986, RFC3986_UNAMBIGUOUS, UNSAFE -# jetty.httpConfig.uriCompliance=DEFAULT - -## Cookie compliance mode for parsing request Cookie headers: RFC2965, RFC6265 -# jetty.httpConfig.requestCookieCompliance=RFC6265 - -## Cookie compliance mode for generating response Set-Cookie: RFC2965, RFC6265 -# jetty.httpConfig.responseCookieCompliance=RFC6265 - -### Server configuration -## Whether ctrl+c on the console gracefully stops the Jetty server -# jetty.server.stopAtShutdown=true - -## Timeout in ms to apply when stopping the server gracefully -# jetty.server.stopTimeout=5000 - -## Dump the state of the Jetty server, components, and webapps after startup -# jetty.server.dumpAfterStart=false - -## Dump the state of the Jetty server, components, and webapps before shutdown -# jetty.server.dumpBeforeStop=false - -### Server Scheduler Configuration -## The scheduler thread name, defaults to "Scheduler-{hashCode()}" if blank. -# jetty.scheduler.name= - -## Whether the server scheduler threads are daemon. -# jetty.scheduler.daemon=false - -## The number of server scheduler threads. -# jetty.scheduler.threads=1 - diff --git a/samples/chat/start.d/websocket.ini b/samples/chat/start.d/websocket.ini deleted file mode 100644 index f85d57f5..00000000 --- a/samples/chat/start.d/websocket.ini +++ /dev/null @@ -1,7 +0,0 @@ -# --------------------------------------- -# Module: websocket -# Enable both websocket-javax and websocket-jetty modules for deployed web applications. -# --------------------------------------- ---module=websocket - - diff --git a/samples/chat/webapps/atmosphere-chat.war b/samples/chat/webapps/atmosphere-chat.war deleted file mode 100644 index ec364bb6..00000000 Binary files a/samples/chat/webapps/atmosphere-chat.war and /dev/null differ