Merge pull request #11201 from freelansam/JAVA-6439
JAVA-6439: Check PR for spring-security-web-sockets module
This commit is contained in:
commit
8fc8af79bf
@ -10,8 +10,8 @@ This module contains articles about WebSockets with Spring Security
|
|||||||
|
|
||||||
### Running This Project:
|
### Running This Project:
|
||||||
|
|
||||||
To build the project, run the command: mvn clean install. This will build a war file in the target folder that you can deploye on a server like Tomcat.
|
To build the project, run the command: `mvn clean install`. This will build a war file in the target folder that you can deploy on a server like Tomcat.
|
||||||
|
|
||||||
Alternatively, run the project from an IDE.
|
Alternatively, run the project from an IDE, with the maven goal `org.codehaus.cargo:cargo-maven2-plugin:run`
|
||||||
|
|
||||||
To login, use credentials from the data.sql file in src/main/resource, eg: user/password.
|
To login, use credentials from the data.sql file in src/main/resource, eg: user/password.
|
||||||
|
@ -155,11 +155,14 @@
|
|||||||
<finalName>spring-security-web-sockets</finalName>
|
<finalName>spring-security-web-sockets</finalName>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.tomcat.maven</groupId>
|
<groupId>org.codehaus.cargo</groupId>
|
||||||
<artifactId>tomcat7-maven-plugin</artifactId>
|
<artifactId>cargo-maven2-plugin</artifactId>
|
||||||
<version>2.2</version>
|
<version>${cargo-maven2-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<path>/spring-security-mvc-socket</path>
|
<container>
|
||||||
|
<containerId>tomcat9x</containerId>
|
||||||
|
<type>embedded</type>
|
||||||
|
</container>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
@ -179,6 +182,7 @@
|
|||||||
<spring-data-jpa.version>1.11.3.RELEASE</spring-data-jpa.version>
|
<spring-data-jpa.version>1.11.3.RELEASE</spring-data-jpa.version>
|
||||||
<logback-classic.version>1.2.3</logback-classic.version>
|
<logback-classic.version>1.2.3</logback-classic.version>
|
||||||
<spring-boot-starter-test.version>1.5.10.RELEASE</spring-boot-starter-test.version>
|
<spring-boot-starter-test.version>1.5.10.RELEASE</spring-boot-starter-test.version>
|
||||||
|
<cargo-maven2-plugin.version>1.7.6</cargo-maven2-plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
Loading…
x
Reference in New Issue
Block a user