Skip to content

Commit

Permalink
add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
vasgat committed Feb 8, 2021
1 parent 00c47d6 commit ddb6898
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>certh.iti.mklab</groupId>
<artifactId>easIE</artifactId>
<version>0.4</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<build>
Expand All @@ -23,6 +23,15 @@
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -117,6 +126,12 @@
<version>1.25</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>25.0-jre</version>
</dependency>

</dependencies>
<repositories>
<repository>
Expand Down

0 comments on commit ddb6898

Please sign in to comment.