diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-01-26 19:21:54 +0300 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-01-27 17:11:11 +0300 |
commit | 815899837ca07904fe9dc9223b4a4e8ac486cb59 (patch) | |
tree | b92834ad5dd92bdd9eb8504e8bd649e81e559d41 /sonar-gwt-api/pom.xml | |
parent | 40e0e78a54535e1a5009a626fb43dccad9230328 (diff) | |
download | sonarqube-815899837ca07904fe9dc9223b4a4e8ac486cb59.tar.gz sonarqube-815899837ca07904fe9dc9223b4a4e8ac486cb59.zip |
SONAR-2046: Reuse unmarshallers from sonar-ws-client for sonar-gwt-api
* WSUtils has two implementations - one for GWT and another for Java,
so can be used by unmarshallers in both cases. But this not very good,
because code is not type-safe. In fact it would be better to use
emulation of types from org.json.simple for GWT, but this solution is
more straightforward.
Diffstat (limited to 'sonar-gwt-api/pom.xml')
-rw-r--r-- | sonar-gwt-api/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-gwt-api/pom.xml b/sonar-gwt-api/pom.xml index 7f60b4adf39..1b0e10f2544 100644 --- a/sonar-gwt-api/pom.xml +++ b/sonar-gwt-api/pom.xml @@ -66,7 +66,7 @@ <type>jar</type> <overWrite>true</overWrite> <outputDirectory>${project.build.directory}/classes</outputDirectory> - <includes>**/services/*.java</includes> + <includes>**/services/*.java,**/unmarshallers/*.java</includes> </artifactItem> </artifactItems> <overWriteReleases>true</overWriteReleases> |