Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Commits
2a90cdbe
Commit
2a90cdbe
authored
6 years ago
by
Tom Käsler
Browse files
Options
Downloads
Patches
Plain Diff
fix imports/dependencies
parent
6765024a
No related merge requests found
Pipeline
#22922
passed with warnings with stages
Stage:
Stage:
Stage:
in 1 minute and 20 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+19
-7
19 additions, 7 deletions
pom.xml
src/main/java/de/thm/arsnova/config/WebSocketConfig.java
+1
-1
1 addition, 1 deletion
src/main/java/de/thm/arsnova/config/WebSocketConfig.java
with
20 additions
and
8 deletions
pom.xml
+
19
−
7
View file @
2a90cdbe
...
...
@@ -170,13 +170,14 @@
<artifactId>
spring-integration-mail
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-websocket
</artifactId>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-messaging
</artifactId>
<scope>
compile
</scope>
</dependency>
<dependency>
<groupId>
org.springframework
.boot
</groupId>
<artifactId>
spring-
boot-starter-tes
t
</artifactId>
<scope>
test
</scope>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-
websocke
t
</artifactId>
<scope>
compile
</scope>
</dependency>
<!-- Security -->
<dependency>
...
...
@@ -244,8 +245,8 @@
<artifactId>
javax.mail
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<groupId>
org.springframework
.boot
</groupId>
<artifactId>
spring-
boot-
test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
...
...
@@ -253,6 +254,17 @@
<artifactId>
spring-security-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.assertj
</groupId>
<artifactId>
assertj-core
</artifactId>
<version>
3.11.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/thm/arsnova/config/WebSocketConfig.java
+
1
−
1
View file @
2a90cdbe
...
...
@@ -20,7 +20,7 @@ public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
@Override
public
void
registerStompEndpoints
(
StompEndpointRegistry
registry
)
{
registry
.
addEndpoint
(
"/ws"
);
registry
.
addEndpoint
(
"/ws"
)
.
setAllowedOrigins
(
"*"
).
withSockJS
()
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment