Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5531 mandeep.dh 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>in.shop2020</groupId>
5
	<artifactId>FileUploader</artifactId>
6
	<version>0.0.1-SNAPSHOT</version>
7
	<build>
8
		<plugins>
9
			<plugin>
10
				<groupId>org.apache.maven.plugins</groupId>
11
				<artifactId>maven-assembly-plugin</artifactId>
12
				<version>2.2.1</version>
13
				<configuration>
14
					<descriptorRefs>
15
						<descriptorRef>jar-with-dependencies</descriptorRef>
16
					</descriptorRefs>
17
					<archive>
18
						<addMavenDescriptor>false</addMavenDescriptor>
19
						<manifest>
20
							<mainClass>in.shop2020.util.FileUploader</mainClass>
21
						</manifest>
22
					</archive>
23
				</configuration>
24
				<executions>
25
					<execution>
26
						<phase>package</phase>
27
						<goals>
28
							<goal>single</goal>
29
						</goals>
30
					</execution>
31
				</executions>
32
			</plugin>
33
		</plugins>
34
	</build>
35
 
36
	<dependencies>
37
		<dependency>
38
			<groupId>org.apache.httpcomponents</groupId>
39
			<artifactId>httpclient</artifactId>
40
			<version>4.2</version>
41
			<type>jar</type>
42
			<scope>compile</scope>
43
		</dependency>
44
		<dependency>
45
			<groupId>org.apache.httpcomponents</groupId>
46
			<artifactId>httpmime</artifactId>
47
			<version>4.2</version>
48
			<type>jar</type>
49
			<scope>compile</scope>
50
		</dependency>
51
	</dependencies>
52
</project>