Skip to content

Commit cec1335

Browse files
committed
BDRELENG-3718: com.blackducksoftware should be the group
1 parent fb90de3 commit cec1335

26 files changed

+70
-70
lines changed

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Currently, Eclipse is the supported IDE for development. It is recommended to cr
2020

2121
### Custom Setup
2222

23-
To run tests, the property `com.blackduck.method.analyzer.test.project.dir` must be set to the file path of the `method-analyzer-test-project` directory in the run/debug settings of TestNG. Executions of the tests from the command line via Gradle are configured with this value automatically.
23+
To run tests, the property `com.blackducksoftware.method.analyzer.test.project.dir` must be set to the file path of the `method-analyzer-test-project` directory in the run/debug settings of TestNG. Executions of the tests from the command line via Gradle are configured with this value automatically.
2424

2525

2626
## General Standards

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# General library settings
2-
group=com.blackduck
2+
group=com.blackducksoftware
33
version=1.0.0-SNAPSHOT
44

55
org.gradle.console=plain

method-analyzer-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
// Configure tests with directory for test project
2828
// This requires setting up TestNG run/debug properties within IDE imports to execute tests
2929
test {
30-
systemProperty 'com.blackduck.method.analyzer.test.project.dir', "${project(':method-analyzer-test-project').projectDir}"
30+
systemProperty 'com.blackducksoftware.method.analyzer.test.project.dir', "${project(':method-analyzer-test-project').projectDir}"
3131
}
3232

3333
publishing {

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/MethodUseAnalyzer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* specific language governing permissions and limitations
2121
* under the License.
2222
*/
23-
package com.blackduck.method.analyzer.core;
23+
package com.blackducksoftware.method.analyzer.core;
2424

2525
import java.io.IOException;
2626
import java.io.InputStream;
@@ -40,10 +40,10 @@
4040
import org.slf4j.Logger;
4141
import org.slf4j.LoggerFactory;
4242

43-
import com.blackduck.method.analyzer.core.bytecode.ClassMethodReferenceVisitor;
44-
import com.blackduck.method.analyzer.core.model.MethodUse;
45-
import com.blackduck.method.analyzer.core.model.ReferencedMethod;
46-
import com.blackduck.method.analyzer.core.report.ReportGenerator;
43+
import com.blackducksoftware.method.analyzer.core.bytecode.ClassMethodReferenceVisitor;
44+
import com.blackducksoftware.method.analyzer.core.model.MethodUse;
45+
import com.blackducksoftware.method.analyzer.core.model.ReferencedMethod;
46+
import com.blackducksoftware.method.analyzer.core.report.ReportGenerator;
4747
import com.google.common.base.Preconditions;
4848
import com.google.common.base.Strings;
4949
import com.google.common.collect.Multimap;

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/bytecode/ClassMethodReferenceVisitor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* specific language governing permissions and limitations
2121
* under the License.
2222
*/
23-
package com.blackduck.method.analyzer.core.bytecode;
23+
package com.blackducksoftware.method.analyzer.core.bytecode;
2424

2525
import java.util.List;
2626
import java.util.Objects;
@@ -39,8 +39,8 @@
3939
import org.slf4j.Logger;
4040
import org.slf4j.LoggerFactory;
4141

42-
import com.blackduck.method.analyzer.core.model.MethodUse;
43-
import com.blackduck.method.analyzer.core.model.ReferencedMethod;
42+
import com.blackducksoftware.method.analyzer.core.model.MethodUse;
43+
import com.blackducksoftware.method.analyzer.core.model.ReferencedMethod;
4444
import com.google.common.collect.Multimap;
4545

4646
/**

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/bytecode/MethodReferenceRegistry.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* specific language governing permissions and limitations
2121
* under the License.
2222
*/
23-
package com.blackduck.method.analyzer.core.bytecode;
23+
package com.blackducksoftware.method.analyzer.core.bytecode;
2424

2525
import java.util.Collection;
2626
import java.util.HashSet;
@@ -31,8 +31,8 @@
3131

3232
import javax.annotation.Nullable;
3333

34-
import com.blackduck.method.analyzer.core.model.MethodUse;
35-
import com.blackduck.method.analyzer.core.model.ReferencedMethod;
34+
import com.blackducksoftware.method.analyzer.core.model.MethodUse;
35+
import com.blackducksoftware.method.analyzer.core.model.ReferencedMethod;
3636
import com.google.common.collect.HashBasedTable;
3737
import com.google.common.collect.HashMultimap;
3838
import com.google.common.collect.Multimap;

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/bytecode/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
*
2727
* @author romeara
2828
*/
29-
package com.blackduck.method.analyzer.core.bytecode;
29+
package com.blackducksoftware.method.analyzer.core.bytecode;

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/model/MethodUse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* specific language governing permissions and limitations
2121
* under the License.
2222
*/
23-
package com.blackduck.method.analyzer.core.model;
23+
package com.blackducksoftware.method.analyzer.core.model;
2424

2525
import java.util.Objects;
2626
import java.util.Optional;

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/model/ReferencedMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* specific language governing permissions and limitations
2121
* under the License.
2222
*/
23-
package com.blackduck.method.analyzer.core.model;
23+
package com.blackducksoftware.method.analyzer.core.model;
2424

2525
import java.util.List;
2626
import java.util.Objects;

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/model/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
*
2727
* @author romeara
2828
*/
29-
package com.blackduck.method.analyzer.core.model;
29+
package com.blackducksoftware.method.analyzer.core.model;

0 commit comments

Comments
 (0)