diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-02 22:45:23 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-02 22:45:23 +0000 |
commit | 5dc6635594ad4a6f08ecf61ac30b82333a418686 (patch) | |
tree | 39393c6c2b13cc573d4f813b650dddb518f4facc /branches | |
parent | aeced4f9056245b0f0c8464fbf7bbc6e1131be43 (diff) |
Fixing jUnit scope for some iTest projects
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@810721 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
5 files changed, 11 insertions, 12 deletions
diff --git a/branches/sca-java-1.5.1/itest/corba/pom.xml b/branches/sca-java-1.5.1/itest/corba/pom.xml index 12bf7f4873..34a159bb3e 100644 --- a/branches/sca-java-1.5.1/itest/corba/pom.xml +++ b/branches/sca-java-1.5.1/itest/corba/pom.xml @@ -106,15 +106,14 @@ <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-databinding-sdo</artifactId> <version>1.5.1-SNAPSHOT</version> - <scope>compile</scope> </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>compile</scope> - </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> </dependencies> <build> diff --git a/branches/sca-java-1.5.1/itest/policy-security-basicauth/pom.xml b/branches/sca-java-1.5.1/itest/policy-security-basicauth/pom.xml index f16513749c..6edc732530 100644 --- a/branches/sca-java-1.5.1/itest/policy-security-basicauth/pom.xml +++ b/branches/sca-java-1.5.1/itest/policy-security-basicauth/pom.xml @@ -100,6 +100,7 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> + <scope>test</scope> </dependency> <dependency> diff --git a/branches/sca-java-1.5.1/itest/policy-security-jsr250/pom.xml b/branches/sca-java-1.5.1/itest/policy-security-jsr250/pom.xml index 26ec09ebcb..53de2470fe 100644 --- a/branches/sca-java-1.5.1/itest/policy-security-jsr250/pom.xml +++ b/branches/sca-java-1.5.1/itest/policy-security-jsr250/pom.xml @@ -68,8 +68,7 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> + <scope>test</scope> </dependency> - - </dependencies> </project> diff --git a/branches/sca-java-1.5.1/itest/policy-security-token/pom.xml b/branches/sca-java-1.5.1/itest/policy-security-token/pom.xml index aa07d6819f..4e6049bbe7 100644 --- a/branches/sca-java-1.5.1/itest/policy-security-token/pom.xml +++ b/branches/sca-java-1.5.1/itest/policy-security-token/pom.xml @@ -98,7 +98,8 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.2</version> + <version>4.5</version> + <scope>test</scope> </dependency> <dependency> diff --git a/branches/sca-java-1.5.1/itest/policy-security/pom.xml b/branches/sca-java-1.5.1/itest/policy-security/pom.xml index d8f10ae562..a937bd5695 100644 --- a/branches/sca-java-1.5.1/itest/policy-security/pom.xml +++ b/branches/sca-java-1.5.1/itest/policy-security/pom.xml @@ -61,8 +61,7 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> + <scope>test</scope> </dependency> - - </dependencies> </project> |