diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-09 13:49:01 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-09 13:49:19 +0200 |
commit | 223d3f26c6391622c0770f3bc65fdbd54b85233c (patch) | |
tree | aa954c15743acd820ecfb7f8500cedc12c6588bd /sonar-core/pom.xml | |
parent | ea1703158c9f4bd3fe57b78222dc2cf10ae45c4c (diff) | |
download | sonarqube-223d3f26c6391622c0770f3bc65fdbd54b85233c.tar.gz sonarqube-223d3f26c6391622c0770f3bc65fdbd54b85233c.zip |
SONAR-3621 use JSON format between rails and java components
This is the first step before the refactoring of the tables FILTERS, FILTER_COLUMNS and CRITERIA
Diffstat (limited to 'sonar-core/pom.xml')
-rw-r--r-- | sonar-core/pom.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index b54ae40570b..5dc59272289 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -1,5 +1,6 @@ <?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/xsd/maven-4.0.0.xsd"> +<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -64,7 +65,11 @@ <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-classworlds</artifactId> </dependency> - + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1.1</version> + </dependency> <!-- logging --> <dependency> |