Subversion Repositories SmartDukaan

Rev

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

Rev 4509 Rev 4574
Line 3... Line 3...
3
	<modelVersion>4.0.0</modelVersion>
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>in.shop2020</groupId>
4
	<groupId>in.shop2020</groupId>
5
	<artifactId>WarehouseService</artifactId>
5
	<artifactId>WarehouseService</artifactId>
6
    <packaging>jar</packaging>
6
    <packaging>jar</packaging>
7
    <version>1.0-SNAPSHOT</version>
7
    <version>1.0-SNAPSHOT</version>
-
 
8
 
8
    <parent>
9
    <parent>
9
      <groupId>in.shop2020</groupId>
10
      <groupId>in.shop2020</groupId>
10
      <artifactId>parent</artifactId>
11
      <artifactId>parent</artifactId>
11
      <version>1.0-SNAPSHOT</version>
12
      <version>1.0-SNAPSHOT</version>
12
    </parent>
13
    </parent>
13
 
14
 
-
 
15
    <build>
-
 
16
        <plugins>
-
 
17
            <plugin>
-
 
18
                <groupId>org.dstovall</groupId>
-
 
19
                <artifactId>onejar-maven-plugin</artifactId>
-
 
20
                <version>1.4.4</version>
-
 
21
                <executions>
-
 
22
                    <execution>
-
 
23
                        <configuration>
-
 
24
                            <mainClass>in.shop2020.warehouse.service.WarehouseServer</mainClass>
-
 
25
                        </configuration>
-
 
26
                        <goals>
-
 
27
                            <goal>one-jar</goal>
-
 
28
                        </goals>
-
 
29
                    </execution>
-
 
30
                </executions>
-
 
31
            </plugin>
-
 
32
        </plugins>
-
 
33
    </build>
-
 
34
 
-
 
35
    <pluginRepositories>
-
 
36
        <pluginRepository>
-
 
37
            <id>onejar-maven-plugin.googlecode.com</id>
-
 
38
            <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
-
 
39
        </pluginRepository>
-
 
40
    </pluginRepositories>
-
 
41
 
14
    <dependencies>
42
    <dependencies>
15
        <dependency>
43
        <dependency>
-
 
44
            <groupId>org.springframework</groupId>
-
 
45
            <artifactId>spring-context</artifactId>
-
 
46
            <version>3.0.5.RELEASE</version>
-
 
47
        </dependency>
-
 
48
        <dependency>
-
 
49
            <groupId>org.springframework.security</groupId>
-
 
50
            <artifactId>spring-security-config</artifactId>
-
 
51
            <version>3.0.5.RELEASE</version>
-
 
52
        </dependency>
-
 
53
        <dependency>
-
 
54
            <groupId>org.springframework</groupId>
-
 
55
            <artifactId>spring-core</artifactId>
-
 
56
            <version>3.0.5.RELEASE</version>
-
 
57
        </dependency>
-
 
58
        <dependency>
-
 
59
            <groupId>org.springframework</groupId>
-
 
60
            <artifactId>spring-expression</artifactId>
-
 
61
            <version>3.0.5.RELEASE</version>
-
 
62
        </dependency>
-
 
63
        <dependency>
-
 
64
            <groupId>org.springframework</groupId>
-
 
65
            <artifactId>spring-jdbc</artifactId>
-
 
66
            <version>3.0.5.RELEASE</version>
-
 
67
        </dependency>
-
 
68
        <dependency>
-
 
69
            <groupId>org.springframework</groupId>
-
 
70
            <artifactId>spring-tx</artifactId>
-
 
71
            <version>3.0.5.RELEASE</version>
-
 
72
        </dependency>
-
 
73
        <dependency>
16
            <groupId>junit</groupId>
74
            <groupId>junit</groupId>
17
            <artifactId>junit</artifactId>
75
            <artifactId>junit</artifactId>
18
            <version>4.8.2</version>
76
            <version>4.8.2</version>
19
            <scope>test</scope>
77
            <scope>test</scope>
20
        </dependency>
78
        </dependency>
Line 52... Line 110...
52
            <groupId>aopalliance</groupId>
110
            <groupId>aopalliance</groupId>
53
            <artifactId>aopalliance</artifactId>
111
            <artifactId>aopalliance</artifactId>
54
            <version>1.0</version>
112
            <version>1.0</version>
55
        </dependency>
113
        </dependency>
56
        <dependency>
114
        <dependency>
57
            <groupId>org.springframework</groupId>
-
 
58
            <artifactId>spring-context</artifactId>
-
 
59
            <version>3.0.5.RELEASE</version>
-
 
60
        </dependency>
-
 
61
        <dependency>
-
 
62
            <groupId>org.springframework</groupId>
-
 
63
            <artifactId>spring-core</artifactId>
-
 
64
            <version>3.0.5.RELEASE</version>
-
 
65
        </dependency>
-
 
66
        <dependency>
-
 
67
            <groupId>org.springframework</groupId>
-
 
68
            <artifactId>spring-expression</artifactId>
-
 
69
            <version>3.0.5.RELEASE</version>
-
 
70
        </dependency>
-
 
71
        <dependency>
-
 
72
            <groupId>org.springframework</groupId>
-
 
73
            <artifactId>spring-jdbc</artifactId>
-
 
74
            <version>3.0.5.RELEASE</version>
-
 
75
        </dependency>
-
 
76
        <dependency>
-
 
77
            <groupId>org.springframework</groupId>
-
 
78
            <artifactId>spring-tx</artifactId>
-
 
79
            <version>3.0.5.RELEASE</version>
-
 
80
        </dependency>
-
 
81
        <dependency>
-
 
82
            <groupId>asm</groupId>
115
            <groupId>asm</groupId>
83
            <artifactId>asm</artifactId>
116
            <artifactId>asm</artifactId>
84
            <version>3.1</version>
117
            <version>3.1</version>
85
        </dependency>
118
        </dependency>
86
        <dependency>
119
        <dependency>