Skip to content

Commit 83b448a

Browse files
committed
Extract Squid into its own module
1 parent 7ff07ab commit 83b448a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+102
-49
lines changed

objective-c-squid/pom.xml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>org.sonarqubecommunity.objectivec</groupId>
7+
<artifactId>objective-c</artifactId>
8+
<version>0.5.0-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>objective-c-squid</artifactId>
12+
13+
<name>SonarQube Objective-C (Community) :: Squid</name>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.codehaus.sonar</groupId>
18+
<artifactId>sonar-plugin-api</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>org.sonarsource.sslr</groupId>
22+
<artifactId>sslr-core</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.sonarsource.sslr-squid-bridge</groupId>
26+
<artifactId>sslr-squid-bridge</artifactId>
27+
</dependency>
28+
<!-- unit tests -->
29+
<dependency>
30+
<groupId>org.codehaus.sonar</groupId>
31+
<artifactId>sonar-testing-harness</artifactId>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.sonarsource.sslr</groupId>
36+
<artifactId>sslr-testing-harness</artifactId>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>junit</groupId>
41+
<artifactId>junit</artifactId>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.easytesting</groupId>
46+
<artifactId>fest-assert</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>ch.qos.logback</groupId>
51+
<artifactId>logback-classic</artifactId>
52+
<scope>test</scope>
53+
</dependency>
54+
</dependencies>
55+
</project>

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/ObjectiveCAstScanner.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/ObjectiveCAstScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/ObjectiveCConfiguration.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/ObjectiveCConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/ObjectiveCGrammar.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/ObjectiveCGrammar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/ObjectiveCKeyword.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/ObjectiveCKeyword.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/ObjectiveCMetric.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/ObjectiveCMetric.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/ObjectiveCPunctuator.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/ObjectiveCPunctuator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/ObjectiveCTokenType.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/ObjectiveCTokenType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/api/package-info.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/api/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

sonar-objective-c-plugin/src/main/java/org/sonar/objectivec/checks/CheckList.java renamed to objective-c-squid/src/main/java/org/sonar/objectivec/checks/CheckList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SonarQube Objective-C (Community) Plugin
2+
* SonarQube Objective-C (Community) :: Squid
33
* Copyright (C) 2012-2016 OCTO Technology, Backelite, and contributors
44
* mailto:sonarqube@googlegroups.com
55
*

0 commit comments

Comments
 (0)