Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[submodule "lightblue-applications"]
path = lightblue-applications
url = https://github.com/lightblue-platform/lightblue-applications.git
[submodule "lightblue-audit-hook"]
path = lightblue-audit-hook
url = https://github.com/lightblue-platform/lightblue-audit-hook.git
[submodule "lightblue-client"]
path = lightblue-client
url = https://github.com/lightblue-platform/lightblue-client.git
[submodule "lightblue-core"]
path = lightblue-core
url = git@github.com:lightblue-platform/lightblue-core.git
[submodule "lightblue-rdbms"]
path = lightblue-rdbms
url = git@github.com:lightblue-platform/lightblue-rdbms.git
url = https://github.com/lightblue-platform/lightblue-core.git
[submodule "lightblue-ldap"]
path = lightblue-ldap
url = https://github.com/lightblue-platform/lightblue-ldap.git
[submodule "lightblue-mongo"]
path = lightblue-mongo
url = git@github.com:lightblue-platform/lightblue-mongo.git
url = https://github.com/lightblue-platform/lightblue-mongo.git
[submodule "lightblue-rdbms"]
path = lightblue-rdbms
url = https://github.com/lightblue-platform/lightblue-rdbms.git
[submodule "lightblue-rest"]
path = lightblue-rest
url = git@github.com:lightblue-platform/lightblue-rest.git
[submodule "lightblue-audit-hook"]
path = lightblue-audit-hook
url = git@github.com:lightblue-platform/lightblue-audit-hook.git
[submodule "lightblue-applications"]
path = lightblue-applications
url = git@github.com:lightblue-platform/lightblue-applications.git
[submodule "lightblue-client"]
path = lightblue-client
url = git@github.com:lightblue-platform/lightblue-client.git
url = https://github.com/lightblue-platform/lightblue-rest.git
[submodule "lightblue-migrator"]
path = lightblue-migrator
url = git@github.com:lightblue-platform/lightblue-migrator.git
[submodule "lightblue-ldap"]
path = lightblue-ldap
url = git@github.com:lightblue-platform/lightblue-ldap.git
url = https://github.com/lightblue-platform/lightblue-migrator.git
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ before_install:
- git submodule update --init --recursive
- git submodule foreach git pull origin master
script:
- mvn -B clean verify cobertura:cobertura coveralls:cobertura -Dorg.apache.maven.user-settings=~/settings.xml -Dorg.apache.maven.global-settings=~/settings.xml
- mvn -B clean verify cobertura:cobertura coveralls:report
after_failure: ~/onFailure.sh
notifications:
email: false
Expand Down
9 changes: 2 additions & 7 deletions etc/logging.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@
handlers= java.util.logging.ConsoleHandler

# Set the default logging level for new ConsoleHandler instances
java.util.logging.ConsoleHandler.level= FINEST
java.util.logging.ConsoleHandler.level= ERROR

# Set global verbose level
.level= INFO

# Set log verbose level for ShrinkWrap Resolvers
org.jboss.shrinkwrap.resolver.impl.maven.logging.LogTransferListener.level= FINEST
org.jboss.shrinkwrap.resolver.impl.maven.logging.LogRepositoryListener.level= FINEST
org.jboss.shrinkwrap.resolver.impl.maven.logging.LogModelProblemCollector.level= FINEST
.level= ERROR
2 changes: 1 addition & 1 deletion lightblue-mongo
2 changes: 1 addition & 1 deletion lightblue-rest
30 changes: 30 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,34 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<sonar.host.url>http://127.0.0.1:8080</sonar.host.url>
<sonar.projectName>lightblue</sonar.projectName>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<systemPropertyVariables>
<log4j.configuration>file:etc/logging.properties</log4j.configuration>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<!-- aggregated reports for multi-module projects -->
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</build>
</project>