Skip to content

Commit

Permalink
rectified maven build
Browse files Browse the repository at this point in the history
  • Loading branch information
sasinda committed Jul 2, 2012
1 parent e98891a commit f9d31c6
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
23 changes: 23 additions & 0 deletions xwiki-android-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,29 @@
<artifactId>xwiki-rest-simplexml-model</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.6</version>
<exclusions>
<!-- StAX is not available on Android -->
<exclusion>
<artifactId>stax</artifactId>
<groupId>stax</groupId>
</exclusion>
<exclusion>
<artifactId>stax-api</artifactId>
<groupId>stax</groupId>
</exclusion>
<!-- Provided by Android -->
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>xpp3</groupId>
</exclusion>
</exclusions>
</dependency>

</dependencies>

<build>
Expand Down
23 changes: 23 additions & 0 deletions xwiki-android-test-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,28 @@
<artifactId>junit-dep</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.6</version>
<exclusions>
<!-- StAX is not available on Android -->
<exclusion>
<artifactId>stax</artifactId>
<groupId>stax</groupId>
</exclusion>
<exclusion>
<artifactId>stax-api</artifactId>
<groupId>stax</groupId>
</exclusion>
<!-- Provided by Android -->
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>xpp3</groupId>
</exclusion>
</exclusions>
</dependency>


</dependencies>
</project>
22 changes: 22 additions & 0 deletions xwiki-android-tests-instrumentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,27 @@
<artifactId>junit-dep</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.6</version>
<exclusions>
<!-- StAX is not available on Android -->
<exclusion>
<artifactId>stax</artifactId>
<groupId>stax</groupId>
</exclusion>
<exclusion>
<artifactId>stax-api</artifactId>
<groupId>stax</groupId>
</exclusion>
<!-- Provided by Android -->
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>xpp3</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>

0 comments on commit f9d31c6

Please sign in to comment.