Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
b6454e73
Commit
b6454e73
authored
Mar 26, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Reporting
parent
3592b49d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
1 deletion
+66
-1
pom.xml
apollo-buildtools/pom.xml
+13
-0
LICENSE-2.0.txt
apollo-buildtools/src/main/resources/LICENSE-2.0.txt
+0
-0
google_checks.xml
apollo-buildtools/src/main/resources/google_checks.xml
+0
-0
eclipse-java-google-style.xml
apollo-buildtools/style/eclipse-java-google-style.xml
+0
-0
intellij-java-google-style.xml
apollo-buildtools/style/intellij-java-google-style.xml
+0
-0
pom.xml
pom.xml
+53
-1
No files found.
apollo-buildtools/pom.xml
0 → 100644
View file @
b6454e73
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<parent>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
apollo-buildtools
</artifactId>
<name>
Apollo BuildTools
</name>
</project>
apollo-buildtools/src/main/resources/LICENSE-2.0.txt
0 → 100644
View file @
b6454e73
This diff is collapsed.
Click to expand it.
apollo-buildtools/src/main/resources/google_checks.xml
0 → 100644
View file @
b6454e73
This diff is collapsed.
Click to expand it.
apollo-
dev
/style/eclipse-java-google-style.xml
→
apollo-
buildtools
/style/eclipse-java-google-style.xml
View file @
b6454e73
File moved
apollo-
dev
/style/intellij-java-google-style.xml
→
apollo-
buildtools
/style/intellij-java-google-style.xml
View file @
b6454e73
File moved
pom.xml
View file @
b6454e73
...
...
@@ -73,6 +73,7 @@
<github.global.oauth2Token>
${env.GITHUB_OAUTH_TOKEN}
</github.global.oauth2Token>
</properties>
<modules>
<module>
apollo-buildtools
</module>
<module>
apollo-core
</module>
<module>
apollo-client
</module>
<module>
apollo-biz
</module>
...
...
@@ -179,14 +180,24 @@
<artifactId>
checkstyle
</artifactId>
<version>
6.16.1
</version>
</dependency>
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-buildtools
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
</dependencies>
<configuration>
<configLocation>
google_checks.xml
</configLocation>
<headerLocation>
LICENSE-2.0.txt
</headerLocation>
<failOnViolation>
false
</failOnViolation>
<linkXRef>
false
</linkXRef>
<consoleOutput>
true
</consoleOutput>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
<version>
3.0.3
</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
...
...
@@ -210,6 +221,10 @@
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-checkstyle-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
<profiles>
...
...
@@ -257,7 +272,44 @@
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
<version>
2.9
</version>
<configuration>
<dependencyDetailsEnabled>
false
</dependencyDetailsEnabled>
<dependencyLocationsEnabled>
false
</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-checkstyle-plugin
</artifactId>
<version>
2.17
</version>
<configuration>
<configLocation>
google_checks.xml
</configLocation>
<headerLocation>
LICENSE-2.0.txt
</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-report-plugin
</artifactId>
<version>
2.19.1
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-pmd-plugin
</artifactId>
<version>
3.6
</version>
<reportSets>
<reportSet>
<reports>
<report>
pmd
</report>
<report>
cpd
</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
<version>
3.0.3
</version>
</plugin>
</plugins>
</reporting>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment