Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…fork
  • Loading branch information
tommywo committed Jun 17, 2019
1 parent 71d2dd5 commit 235683f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 19 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,18 @@ sonar.ce.javaOpts=-Xmx2g -Xms128m -XX:+HeapDumpOnOutOfMemoryError

2GB might be enough, or perhaps your code base warrants more.

## Contributors

Many thanks for the people, who created or improved this project:

- Michał Paluchowski
- Nicolas Bihan

## License

Based on StepStone GmbH [repo](https://github.com/stepstone-tech/sonar-coldfusion)
Copyright 2016-2019 StepStone GmbH
and contibutors


Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
</licenses>

<scm>
<connection>[email protected]:nbihan-mediware/sonar-coldfusion.git</connection>
<developerConnection>[email protected]:nbihan-mediware/sonar-coldfusion.git</developerConnection>
<url>https://github.com/nbihan-mediware/sonar-coldfusion</url>
<tag>HEAD</tag>
<connection>[email protected]:stepstone-tech/sonar-coldfusion.git</connection>
<developerConnection>[email protected]:stepstone-tech/sonar-coldfusion.git</developerConnection>
<url>https://github.com/stepstone-tech/sonar-coldfusion</url>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/nbihan-mediware/sonar-coldfusion/issues</url>
<url>https://github.com/stepstone-tech/sonar-coldfusion/issues</url>
</issueManagement>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.wellsky;
package com.stepstone.sonar.plugin.coldfusion;

import com.stepstone.sonar.plugin.coldfusion.ColdFusionPlugin;
import org.junit.Assert;
import org.junit.Test;
import org.sonar.api.Plugin;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package com.wellsky;
package com.stepstone.sonar.plugin.coldfusion;

import com.stepstone.sonar.plugin.coldfusion.ColdFusionPlugin;
import com.stepstone.sonar.plugin.coldfusion.ColdFusionSensor;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.mockito.Mockito;
import org.sonar.api.SonarQubeSide;
import org.sonar.api.batch.fs.InputFile;
import org.sonar.api.batch.fs.internal.DefaultFileSystem;
Expand All @@ -17,19 +14,13 @@
import org.sonar.api.internal.SonarRuntimeImpl;
import org.sonar.api.internal.apachecommons.codec.Charsets;
import org.sonar.api.measures.CoreMetrics;
import org.sonar.api.measures.FileLinesContext;
import org.sonar.api.measures.FileLinesContextFactory;
import org.sonar.api.profiles.RulesProfile;
import org.sonar.api.utils.Version;
import org.sonar.api.utils.command.CommandExecutor;

import java.io.File;
import java.io.IOException;

import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class ColdfusionSensorTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wellsky;
package com.stepstone.sonar.plugin.coldfusion;

public class OSValidator {

Expand Down

0 comments on commit 235683f

Please sign in to comment.