Subversion Repositories SmartDukaan

Rev

Rev 1680 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1680 Rev 1710
Line 7... Line 7...
7
  <version>1.0-SNAPSHOT</version>
7
  <version>1.0-SNAPSHOT</version>
8
 
8
 
9
  <name>Client Agent</name>
9
  <name>Client Agent</name>
10
  <url>http://shop2020.in</url>
10
  <url>http://shop2020.in</url>
11
 
11
 
12
  <parent>
-
 
13
    <groupId>in.shop2020</groupId>
-
 
14
    <artifactId>parent</artifactId>
-
 
15
    <version>1.0-SNAPSHOT</version>
-
 
16
  </parent>
-
 
17
 
-
 
18
  <build>
12
  <build>
19
  <plugins>
13
    <plugins>
20
  <plugin>
14
      <plugin>
21
    <groupId>org.apache.maven.plugins</groupId>
15
        <groupId>org.apache.maven.plugins</groupId>
22
    <artifactId>maven-jar-plugin</artifactId>
16
        <artifactId>maven-jar-plugin</artifactId>
23
    <version>2.2</version>
17
        <version>2.2</version>
24
    <!-- nothing here -->
18
        <!-- nothing here -->
25
  </plugin>
19
      </plugin>
26
  <plugin>
20
      <plugin>
27
    <groupId>org.apache.maven.plugins</groupId>
21
        <groupId>org.apache.maven.plugins</groupId>
28
    <artifactId>maven-assembly-plugin</artifactId>
22
        <artifactId>maven-assembly-plugin</artifactId>
29
    <version>2.2.1</version>
23
        <version>2.2.1</version>
30
    <configuration>
24
        <configuration>
31
      <descriptorRefs>
25
          <descriptorRefs>
32
        <descriptorRef>jar-with-dependencies</descriptorRef>
26
            <descriptorRef>jar-with-dependencies</descriptorRef>
33
      </descriptorRefs>
27
          </descriptorRefs>
34
      <archive>
28
          <archive>
35
        <addMavenDescriptor>false</addMavenDescriptor>
29
            <addMavenDescriptor>false</addMavenDescriptor>
36
        <manifest>
30
            <manifest>
37
          <mainClass>in.shop2020.agent.utils.Agent</mainClass>
31
              <mainClass>in.shop2020.agent.utils.Agent</mainClass>
38
        </manifest>
32
            </manifest>
39
      </archive>
33
          </archive>
40
    </configuration>
34
        </configuration>
41
    <executions>
35
        <executions>
42
      <execution>
36
          <execution>
43
        <phase>package</phase>
37
            <phase>package</phase>
44
        <goals>
38
            <goals>
45
          <goal>single</goal>
39
              <goal>single</goal>
46
        </goals>
40
            </goals>
47
      </execution>
41
          </execution>
48
    </executions>
42
        </executions>
49
  </plugin>
43
      </plugin>
50
  <plugin>
44
      <plugin>
51
    <groupId>org.apache.maven.plugins</groupId>
45
        <groupId>org.apache.maven.plugins</groupId>
52
    <artifactId>maven-compiler-plugin</artifactId>
46
        <artifactId>maven-compiler-plugin</artifactId>
53
    <version>2.3.2</version>
47
        <version>2.3.2</version>
54
    <configuration>
48
        <configuration>
55
      <debug>true</debug>
49
          <debug>true</debug>
56
      <optimize>true</optimize>
50
          <optimize>true</optimize>
57
      <source>1.5</source>
51
          <source>1.5</source>
58
      <target>1.5</target>
52
          <target>1.5</target>
59
    </configuration>
53
        </configuration>
60
  </plugin>
54
      </plugin>
61
  </plugins>
55
    </plugins>
62
  </build>
56
  </build>
63
 
57
 
64
  <dependencies>
58
  <dependencies>
65
    <dependency>
59
    <dependency>
66
      <groupId>readonly.apache</groupId>
60
      <groupId>readonly.apache</groupId>