|
28 | 28 | <groupId>com.joyent.manta</groupId>
|
29 | 29 | <artifactId>java-manta-client</artifactId>
|
30 | 30 | <version>3.1.4-SNAPSHOT</version>
|
| 31 | + |
| 32 | + <!-- If you add a dependency to java-manta-client that is shaded, |
| 33 | + you will have to add it as an exclusion below because the |
| 34 | + Maven enforcer plugin is simpleminded and it will detect |
| 35 | + the shaded class and the dependency jar as conflicting. --> |
| 36 | + <exclusions> |
| 37 | + <exclusion> |
| 38 | + <groupId>com.joyent.http-signature</groupId> |
| 39 | + <artifactId>apache-http-client-signature</artifactId> |
| 40 | + </exclusion> |
| 41 | + <exclusion> |
| 42 | + <groupId>org.apache.httpcomponents</groupId> |
| 43 | + <artifactId>httpclient</artifactId> |
| 44 | + </exclusion> |
| 45 | + <exclusion> |
| 46 | + <groupId>org.apache.commons</groupId> |
| 47 | + <artifactId>commons-lang3</artifactId> |
| 48 | + </exclusion> |
| 49 | + <exclusion> |
| 50 | + <groupId>org.apache.commons</groupId> |
| 51 | + <artifactId>commons-collections4</artifactId> |
| 52 | + </exclusion> |
| 53 | + <exclusion> |
| 54 | + <groupId>commons-io</groupId> |
| 55 | + <artifactId>commons-io</artifactId> |
| 56 | + </exclusion> |
| 57 | + <exclusion> |
| 58 | + <groupId>commons-codec</groupId> |
| 59 | + <artifactId>commons-codec</artifactId> |
| 60 | + </exclusion> |
| 61 | + <exclusion> |
| 62 | + <groupId>com.fasterxml.uuid</groupId> |
| 63 | + <artifactId>java-uuid-generator</artifactId> |
| 64 | + </exclusion> |
| 65 | + <exclusion> |
| 66 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 67 | + <artifactId>jackson-core</artifactId> |
| 68 | + </exclusion> |
| 69 | + <exclusion> |
| 70 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 71 | + <artifactId>jackson-databind</artifactId> |
| 72 | + </exclusion> |
| 73 | + <exclusion> |
| 74 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 75 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 76 | + </exclusion> |
| 77 | + <exclusion> |
| 78 | + <groupId>com.squareup.jnagmp</groupId> |
| 79 | + <artifactId>bouncycastle-rsa</artifactId> |
| 80 | + </exclusion> |
| 81 | + <exclusion> |
| 82 | + <groupId>com.twmacinta</groupId> |
| 83 | + <artifactId>fast-md5</artifactId> |
| 84 | + </exclusion> |
| 85 | + </exclusions> |
31 | 86 | </dependency>
|
32 | 87 | <dependency>
|
33 | 88 | <groupId>ch.qos.logback</groupId>
|
|
0 commit comments