Subversion Repositories SmartDukaan

Rev

Rev 1680 | Go to most recent revision | Details | Compare with Previous | 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
  <build>
1710 chandransh 13
    <plugins>
14
      <plugin>
15
        <groupId>org.apache.maven.plugins</groupId>
16
        <artifactId>maven-jar-plugin</artifactId>
17
        <version>2.2</version>
18
        <!-- nothing here -->
19
      </plugin>
20
      <plugin>
21
        <groupId>org.apache.maven.plugins</groupId>
22
        <artifactId>maven-assembly-plugin</artifactId>
23
        <version>2.2.1</version>
24
        <configuration>
25
          <descriptorRefs>
26
            <descriptorRef>jar-with-dependencies</descriptorRef>
27
          </descriptorRefs>
28
          <archive>
29
            <addMavenDescriptor>false</addMavenDescriptor>
30
            <manifest>
31
              <mainClass>in.shop2020.agent.utils.Agent</mainClass>
32
            </manifest>
33
          </archive>
34
        </configuration>
35
        <executions>
36
          <execution>
37
            <phase>package</phase>
38
            <goals>
39
              <goal>single</goal>
40
            </goals>
41
          </execution>
42
        </executions>
43
      </plugin>
44
      <plugin>
45
        <groupId>org.apache.maven.plugins</groupId>
46
        <artifactId>maven-compiler-plugin</artifactId>
47
        <version>2.3.2</version>
48
        <configuration>
49
          <debug>true</debug>
50
          <optimize>true</optimize>
51
          <source>1.5</source>
52
          <target>1.5</target>
53
        </configuration>
54
      </plugin>
55
    </plugins>
1007 chandransh 56
  </build>
57
 
58
  <dependencies>
59
    <dependency>
60
      <groupId>readonly.apache</groupId>
61
      <artifactId>log4j</artifactId>
62
      <version>1.2.16</version>
63
    </dependency>
64
    <dependency>
65
      <groupId>readonly</groupId>
66
      <artifactId>sqljdbc</artifactId>
67
      <version>3.0</version>
68
    </dependency>
69
  </dependencies>
70
</project>