New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-sonar-runner

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-sonar-runner - npm Package Compare versions

Comparing version 2.3.3 to 2.4.0

sonar-runner-2.4/bin/sonar-runner

2

Gruntfile.js

@@ -42,3 +42,3 @@ /*

jdbc: {
url: 'jdbc:mysql://localhost:3306/sonar',
url: 'jdbc:h2:tcp://localhost:9092/sonar',
username: 'sonar',

@@ -45,0 +45,0 @@ password: 'sonar'

{
"name": "grunt-sonar-runner",
"description": "Sonar Analysis Runner from grunt. The major version is kept in sync with sonar runner distribution version.",
"version": "2.3.3",
"version": "2.4.0",
"homepage": "https://github.com/skhatri/grunt-sonar-runner",

@@ -30,10 +30,10 @@ "author": {

"devDependencies": {
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-clean": "~0.5.0",
"grunt": "~0.4.2",
"grunt-mocha-test": "~0.8.2",
"should":"~3.1.2"
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-clean": "~0.6.0",
"grunt": "~0.4.5",
"grunt-mocha-test": "~0.12.4",
"should":"~4.4.1"
},
"peerDependencies": {
"grunt": "~0.4.2"
"grunt": "~0.4.5"
},

@@ -40,0 +40,0 @@ "keywords": [

@@ -14,5 +14,5 @@ /*

module.exports = function (grunt) {
var SONAR_RUNNER_HOME = __dirname+'/../sonar-runner-2.3';
var SONAR_RUNNER_HOME = __dirname+'/../sonar-runner-2.4';
var JAR = '/lib/sonar-runner-dist-2.3.jar';
var JAR = '/lib/sonar-runner-dist-2.4.jar';
var SONAR_RUNNER_COMMAND = 'java -jar ' + SONAR_RUNNER_HOME + JAR+' -X -Drunner.home=' + SONAR_RUNNER_HOME;

@@ -19,0 +19,0 @@ var LIST_CMD = (/^win/).test(os.platform()) ? 'dir '+SONAR_RUNNER_HOME + JAR : 'ls '+SONAR_RUNNER_HOME + JAR;

@@ -10,3 +10,3 @@ 'use strict';

beforeEach(function () {
var config = grunt.file.read('sonar-runner-2.3/conf/sonar-runner.properties');
var config = grunt.file.read('sonar-runner-2.4/conf/sonar-runner.properties');
var lines = config.split('\n');

@@ -13,0 +13,0 @@ sonarConfig = Object.create(null);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc