Skip to content

Commit a6a68ab

Browse files
author
Riyad Kalla
committed
Merge branch 'master' of github.com:thebuzzmedia/imgscalr
2 parents 21f146a + d3d31d3 commit a6a68ab

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

pom.xml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project>
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.imgscalr</groupId>
5+
<artifactId>imgscalr</artifactId>
6+
<packaging>jar</packaging>
7+
<version>4.0</version>
8+
<name>imgscalr</name>
9+
10+
<properties>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
</properties>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
<version>4.10</version>
19+
<scope>test</scope>
20+
</dependency>
21+
</dependencies>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-assembly-plugin</artifactId>
28+
<version>2.2.1</version>
29+
<configuration>
30+
<descriptorRefs>
31+
<descriptorRef>jar-with-dependencies</descriptorRef>
32+
</descriptorRefs>
33+
</configuration>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
38+
</project>
39+

0 commit comments

Comments
 (0)