OpenSearch/plugins
David Pilato bd5c7d0ea2 [maven] clean pom.xml
In Maven parent project, in dependency management, we should only declare which versions of 3rd party jars we want to use but not force any scope.
It makes then more obvious in modules what is exactly the scope of any dependency.

For example, one could imagine importing `jimfs` as a `compile` dependency in another module/plugin with:

```xml
<dependency>
   <groupId>com.google.jimfs</groupId>
   <artifactId>jimfs</artifactId>
</dependency>
```

But it won't work as expected as the default maven `scope` should be `compile` but here it's `test` as defined in the parent project.

So, if you want to use this lib for tests, you should simply define:

```xml
<dependency>
   <groupId>com.google.jimfs</groupId>
   <artifactId>jimfs</artifactId>
   <scope>test</scope>
</dependency>
```

We also remove `maven-s3-wagon` from gce plugin as it's not used.
2015-06-15 17:08:15 +02:00
..
analysis-icu add analysis-icu module 2015-06-05 13:12:23 +02:00
analysis-kuromoji add analysis-kuromoji module 2015-06-05 13:12:07 +02:00
analysis-phonetic add analysis-phonetic module 2015-06-05 13:12:20 +02:00
analysis-smartcn add analysis-smartcn module 2015-06-05 13:12:12 +02:00
analysis-stempel add analysis-stempel module 2015-06-05 13:12:16 +02:00
cloud-aws add cloud-aws module 2015-06-05 13:12:36 +02:00
cloud-azure Test: added awaitFix to AzureTwoStartedNodesTest.two_nodes_should_run_using_private_ip 2015-06-11 08:59:44 +02:00
cloud-gce [maven] clean pom.xml 2015-06-15 17:08:15 +02:00
lang-javascript [maven] clean pom.xml 2015-06-15 17:08:15 +02:00
lang-python Remove deprecated script APIs 2015-06-13 10:11:43 +02:00
pom.xml [maven] clean pom.xml 2015-06-15 17:08:15 +02:00