-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
need change on wiki page: how to build the product, also need change on CI server in addition, fix minor checkstyle error for #55
- Loading branch information
Showing
18 changed files
with
131 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
componentName=browsermob-proxy | ||
componentName=browsermob-proxy-2.0-beta-8-wilma | ||
buildNumber=DEV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/*========================================================================== | ||
Copyright 2015 EPAM Systems | ||
This file is part of Wilma. | ||
Wilma is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Wilma is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Wilma. If not, see <http://www.gnu.org/licenses/>. | ||
===========================================================================*/ | ||
|
||
// Common local repository info | ||
ext.myLocalRepository='file://C:/tmp/myRepo/' | ||
ext.wilmaVersion=1.1 | ||
|
||
group = 'com.epam.wilma' | ||
apply plugin: 'idea' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'checkstyle' | ||
apply plugin: 'java' | ||
apply plugin: 'maven' | ||
|
||
version = "$wilmaVersion"+'.'+"$buildNumber" | ||
|
||
repositories { | ||
jcenter() | ||
maven { url "http://repo.maven.apache.org/maven2" } | ||
maven { url "${myLocalRepository}" } | ||
} | ||
|
||
// Source and target info | ||
sourceCompatibility = 1.7 | ||
targetCompatibility = 1.7 | ||
|
||
task sourceZip(type: Zip) { | ||
from 'src' | ||
baseName = "$componentName" | ||
classifier 'sources' | ||
extension 'jar' | ||
} | ||
|
||
checkstyle.configFile = file(new File(".").absolutePath + "/config/checkstyle/checkstyle.xml") | ||
checkstyle.configProperties = ['samedir' : new File(".").absolutePath + "/config/checkstyle"] | ||
checkstyle.toolVersion = '5.6' | ||
checkstyle.ignoreFailures = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
wilmaVersion=1.1 | ||
buildNumber=DEV | ||
|
||
sonar_host_url=hosturl | ||
sonar_jdbc_username=userName | ||
sonar_jdbc_password=password | ||
sonar_jdbc_url=jdbcurl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
componentName=wilma-functionaltest | ||
buildNumber=DEV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
componentName=Wilma-MessageSearch | ||
buildNumber=DEV | ||
org.gradle.daemon=true | ||
buildNumber=DEV |
Oops, something went wrong.