mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 19:13:27 -04:00
The SonarQube platform is an open source quality management platform, dedicated to continuously analyzing and measuring the technical quality of source code, from project portfolio down to the method level. Features: - Supports languages: Java, C/C++, Objective-C, C#, PHP, Flex, Groovy, JavaScript, Python, PL/SQL, COBOL, etc. - Can also be used in Android development. - Offers reports on duplicated code, coding standards, unit tests, code coverage, complex code, potential bugs, comments and design and architecture. - Records metrics history and provides evolution graphs ("time machine") and differential views. - Provides fully automated analyses: integrates with Maven, Ant, Gradle and continuous integration tools (Atlassian Bamboo, Jenkins, Hudson, etc.). - Integrates with the Eclipse development environment. - Integrates with external tools: JIRA, Mantis, LDAP, Fortify, etc. - Is expandable with the use of plugins. - Implements the SQALE methodology to compute technical debt. WWW: http://www.sonarqube.org/ PR: 203077 Submitted by: Dusan Vejnovic <freebsd@dussan.org>
59 lines
1.9 KiB
Text
59 lines
1.9 KiB
Text
--- conf/wrapper.conf.orig 2016-03-08 16:34:14 UTC
|
|
+++ conf/wrapper.conf
|
|
@@ -1,7 +1,7 @@
|
|
# Path to JVM executable. By default it must be available in PATH.
|
|
# Can be an absolute path, for example:
|
|
#wrapper.java.command=/path/to/my/jdk/bin/java
|
|
-wrapper.java.command=java
|
|
+wrapper.java.command=/usr/local/bin/java
|
|
|
|
|
|
#
|
|
@@ -14,12 +14,12 @@
|
|
#********************************************************************
|
|
wrapper.java.additional.1=-Djava.awt.headless=true
|
|
wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
|
|
-wrapper.java.classpath.1=../../lib/jsw/*.jar
|
|
-wrapper.java.classpath.2=../../lib/*.jar
|
|
-wrapper.java.library.path.1=./lib
|
|
+wrapper.java.classpath.1=%%WRAPPER_JAR%%
|
|
+wrapper.java.classpath.2=%%DIR%%/lib/*.jar
|
|
+wrapper.java.library.path.1=%%LIB%%/lib
|
|
wrapper.app.parameter.1=org.sonar.application.App
|
|
-wrapper.java.initmemory=3
|
|
-wrapper.java.maxmemory=3
|
|
+wrapper.java.initmemory=512
|
|
+wrapper.java.maxmemory=512
|
|
|
|
#********************************************************************
|
|
# Wrapper Logs
|
|
@@ -27,7 +27,7 @@
|
|
|
|
wrapper.console.format=PM
|
|
wrapper.console.loglevel=INFO
|
|
-wrapper.logfile=../../logs/sonar.log
|
|
+wrapper.logfile=%%LOG%%
|
|
wrapper.logfile.format=M
|
|
wrapper.logfile.loglevel=INFO
|
|
|
|
@@ -35,11 +35,11 @@
|
|
# the log is rolled. Size is specified in bytes. The default value
|
|
# of 0, disables log rolling. May abbreviate with the 'k' (kb) or
|
|
# 'm' (mb) suffix. For example: 10m = 10 megabytes.
|
|
-#wrapper.logfile.maxsize=0
|
|
+wrapper.logfile.maxsize=10m
|
|
|
|
# Maximum number of rolled log files which will be allowed before old
|
|
# files are deleted. The default value of 0 implies no limit.
|
|
-#wrapper.logfile.maxfiles=0
|
|
+wrapper.logfile.maxfiles=10
|
|
|
|
# Log Level for sys/event log output. (See docs for log levels)
|
|
wrapper.syslog.loglevel=NONE
|
|
@@ -85,4 +85,4 @@
|
|
wrapper.disable_restarts=TRUE
|
|
wrapper.ping.timeout=0
|
|
wrapper.shutdown.timeout=3000
|
|
-wrapper.jvm_exit.timeout=3000
|
|
\ No newline at end of file
|
|
+wrapper.jvm_exit.timeout=3000
|