Skip to content
This repository has been archived by the owner on Aug 21, 2021. It is now read-only.

Commit

Permalink
Replace ServerExtension (removed in 7.3) with @serverside #17
Browse files Browse the repository at this point in the history
  • Loading branch information
deepy committed Aug 23, 2018
1 parent f30b216 commit f7a0a9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>cm.xd.sonar-plugins</groupId>
<artifactId>sonar-crowd-plugin</artifactId>
<version>2.2-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
<packaging>sonar-plugin</packaging>
<name>Sonar Crowd Plugin</name>
<description>Delegates authentication to Atlassian Crowd.</description>
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/org/sonar/plugins/crowd/CrowdConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
*/
package org.sonar.plugins.crowd;

import org.sonar.api.ServerExtension;
import org.sonar.api.config.Settings;
import org.sonar.api.server.ServerSide;

/**
* @author Evgeny Mandrikov
*/
public class CrowdConfiguration implements ServerExtension {
@ServerSide
public class CrowdConfiguration {

static final String KEY_CROWD_URL = "crowd.url";
static final String KEY_CROWD_APP_NAME = "crowd.application";
Expand Down

0 comments on commit f7a0a9e

Please sign in to comment.