Skip to content

Commit 37eea62

Browse files
committedAug 12, 2015
Added config files. Modified pom.xml
Summary: Added arc and pom configurations Test Plan: Verify the right configuration Reviewers: jmsotuyo Reviewed By: jmsotuyo Differential Revision: http://ph.monits.com/D12127
1 parent ada6435 commit 37eea62

File tree

3 files changed

+33
-21
lines changed

3 files changed

+33
-21
lines changed
 

‎.arcconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"repository.callsign": "MAVZ",
3+
"conduit_uri": "http://ph.monits.com/",
4+
"load": [
5+
"/opt/arc-lint/"
6+
]
7+
}

‎.arclint

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"linters": {
3+
"maven": {
4+
"type": "maven",
5+
"lints": [ "checkstyle", "findbugs", "pmd", "cpd" ],
6+
"include": "(\\.java$)"
7+
},
8+
"json": {
9+
"type": "json",
10+
"include": [
11+
"(^\\.arcconfig$)",
12+
"(^\\.arclint$)"
13+
]
14+
},
15+
"chmod": {
16+
"type": "chmod"
17+
},
18+
"merge-conflict": {
19+
"type": "merge-conflict"
20+
},
21+
"spelling": {
22+
"type": "spelling"
23+
}
24+
}
25+
}

‎pom.xml

+1-21
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.monits</groupId>
1616
<artifactId>java-pom</artifactId>
17-
<version>1.0</version>
17+
<version>2.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<licenses>
@@ -62,24 +62,4 @@
6262
<version>2.0</version>
6363
</dependency>
6464
</dependencies>
65-
66-
<reporting>
67-
<plugins>
68-
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
70-
<artifactId>maven-checkstyle-plugin</artifactId>
71-
<version>2.9.1</version>
72-
<inherited>true</inherited>
73-
<reportSets>
74-
<reportSet>
75-
<reports>
76-
<!-- This option is needed by projects that are not multi-module -->
77-
<report>checkstyle</report>
78-
</reports>
79-
</reportSet>
80-
</reportSets>
81-
</plugin>
82-
</plugins>
83-
</reporting>
84-
8565
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.