Commit a9d54935 authored by Greg Thomas's avatar Greg Thomas Committed by Guus der Kinderen

OF-1441: Ensure only the necessary JAR files are included in the distribution

parent 41fd39c6
...@@ -65,6 +65,7 @@ ...@@ -65,6 +65,7 @@
<overWriteReleases>false</overWriteReleases> <overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots> <overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer> <overWriteIfNewer>true</overWriteIfNewer>
<includeScope>runtime</includeScope>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
...@@ -329,11 +330,6 @@ ...@@ -329,11 +330,6 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.3</version>
</dependency>
<dependency> <dependency>
<groupId>commons-httpclient</groupId> <groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId> <artifactId>commons-httpclient</artifactId>
...@@ -380,6 +376,11 @@ ...@@ -380,6 +376,11 @@
<artifactId>jsmpp</artifactId> <artifactId>jsmpp</artifactId>
<version>2.2.4</version> <version>2.2.4</version>
</dependency> </dependency>
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.0</version>
</dependency>
<!-- Database Drivers --> <!-- Database Drivers -->
<dependency> <dependency>
...@@ -405,12 +406,6 @@ ...@@ -405,12 +406,6 @@
<version>4.11</version> <version>4.11</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment