Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1007 chandransh 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/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <groupId>in.shop2020</groupId>
5
  <artifactId>ClientAgent</artifactId>
6
  <packaging>jar</packaging>
7
  <version>1.0-SNAPSHOT</version>
8
 
9
  <name>Client Agent</name>
10
  <url>http://shop2020.in</url>
11
 
12
  <parent>
13
    <groupId>in.shop2020</groupId>
14
    <artifactId>parent</artifactId>
15
    <version>1.0-SNAPSHOT</version>
16
  </parent>
17
 
18
  <build>
19
  <plugins>
20
  <plugin>
21
    <groupId>org.apache.maven.plugins</groupId>
22
    <artifactId>maven-jar-plugin</artifactId>
23
    <version>2.2</version>
24
    <!-- nothing here -->
25
  </plugin>
26
  <plugin>
27
    <groupId>org.apache.maven.plugins</groupId>
28
    <artifactId>maven-assembly-plugin</artifactId>
29
    <version>2.2.1</version>
30
    <configuration>
31
      <descriptorRefs>
32
        <descriptorRef>jar-with-dependencies</descriptorRef>
33
      </descriptorRefs>
34
      <archive>
35
        <addMavenDescriptor>false</addMavenDescriptor>
36
        <manifest>
37
          <mainClass>in.shop2020.agent.utils.Agent</mainClass>
38
        </manifest>
39
      </archive>
40
    </configuration>
41
    <executions>
42
      <execution>
43
        <phase>package</phase>
44
        <goals>
45
          <goal>single</goal>
46
        </goals>
47
      </execution>
48
    </executions>
49
  </plugin>
50
  <plugin>
51
    <groupId>org.apache.maven.plugins</groupId>
52
    <artifactId>maven-compiler-plugin</artifactId>
53
    <configuration>
54
      <debug>true</debug>
55
      <optimize>true</optimize>
56
      <source>1.5</source>
57
      <target>1.5</target>
58
    </configuration>
59
  </plugin>
60
  </plugins>
61
  </build>
62
 
63
  <dependencies>
64
    <dependency>
65
      <groupId>readonly.apache</groupId>
66
      <artifactId>log4j</artifactId>
67
      <version>1.2.16</version>
68
    </dependency>
69
    <dependency>
70
      <groupId>readonly</groupId>
71
      <artifactId>sqljdbc</artifactId>
72
      <version>3.0</version>
73
    </dependency>
74
  </dependencies>
75
</project>